1.

Point out the error in the following program. #include struct emp { char name[20]; int age; }; int main() { emp int xx; int a; printf("%d\n", &a); return 0; }

A. Error: in printf
B. Error: in emp int xx;
C. No error.
D. None of these.
Answer» C. No error.


Discussion

No Comment Found