What will be the output of the following C code?
#include <stdio.h>
int main()
{
j = 10;
printf("%d\n", j++);
return 0;
}
#include <stdio.h>
int main()
{
j = 10;
printf("%d\n", j++);
return 0;
}
A. 10
B. 11
C. Compile time error
D. 0
Answer: Option C
Join The Discussion