1.

What will be the output of the program? #include int get(); int main() { const int x = get(); printf("%d", x); return 0; } int get() { return 20; }

A. Garbage value
B. Error
C. 20
D. 0
Answer» D. 0


Discussion

No Comment Found