1.

What will be the output of the program? #include typedef struct error {int warning, err, exception;} ERROR; int main() { ERROR e; e.err=1; printf("%d n", e.err); return 0; }

A. 1
B. 2
C. Error
Answer» C. Error


Discussion

No Comment Found

Related MCQs