What will be the output of the following code snippet in C language?
Assume that all preprocessor directives are correct.
main()
{
int a=11;
clrscr(); a++ +=10;
printf("%d",a); getch();
}
Reveal answer
Fill a bubble to check yourself