1.

What is the output of the following program? #include< stdio.h> int main() { static int a = 3; printf(“%d”, a --); return 0; }

A. 0
B. 1
C. 2
D. 3
Answer» E.


Discussion

No Comment Found

Related MCQs