Can you guess the output of the following C code?
#includestdio.h
int main()
{
int a = 10;
int b = a 1;
int c = ++a+ ++b;
printf("%d", c);
return 0;
}


Posted on by