Examveda
Examveda

What will be the output of the following C code?
#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


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals