1.

What will be the output of the following program? #include< stdio.h> void fun() { fun(); Return 0; } void fun() { auto int I = 1; register char a = ‘D’; static int p = 0; printf(“%d %d %ld”, I, a, p); }

A. 1 D 0
B. 1 0 0
C. 0 D 1
D. 1 68 0
Answer» E.


Discussion

No Comment Found

Related MCQs