C - Basics and Execution Environment
What will be the output of the following C code?
int main() {
int a = 5;
int b = 3;
int c = a + b * 2;
printf("%d", c);
return 0;
}