1.

Predict the output of following program? #include #define MAX 1000 int main() { int MAX = 100; printf("%d ", MAX); return 0; }

A. 1000
B. 100
C. Compiler Error
D. Garbage Value
Answer» D. Garbage Value


Discussion

No Comment Found