What is the output of the following C Program?


Loading

โœช Choose the correct option.

What is the output of the following C Program?


#include

int main()

{

static int i=i++,j=j++,k=k++;

printf("%d%d%d",i,j,k);

return 0;

}

A. Compilation Error
B. Garbage values.
C. No output No Error
D. 36892

Leave a Comment