1.

int main(int argc,char ** argv) { void fnstat( ); for(i=0 ; i< 4 ; i++) fnstat( ); return 0; } void fnstat( ) { static int ia=0; printf("%d",ia); ia++; } What is the output of the following code?

A. 0000
B. 0123
C. 0246
D. 0243
Answer» C. 0246


Discussion

No Comment Found