1.

What will be the output of the following C code? #include <stdio.h> struct A { int n; char m; }; int A = 150; int main() { struct A z; z.n = 150; printf("%d %d n", z.n, A); }

A. 150 150
B. Compilation Error
C. Garbage value
D. Nothing
E. None of these
Answer» B. Compilation Error


Discussion

No Comment Found

Related MCQs