1.

What will be the output of the following program? #include < stdio.h> static int y = 1; int main() { static int z; printf(“%d %d”, y, z); return 0; }

A. Garbage value
B. 0 0
C. 1 0
D. 1 1
Answer» D. 1 1


Discussion

No Comment Found

Related MCQs