1.

In the following code snippet can we declare a new typedef named ptr even though struct employee has not been completely declared while using typedef? typedef struct employee *ptr; struct employee { char name[20]; int age; ptr next; }

A. Yes
B. No
C. Error: in *NODEPTR
D. Error: typedef cannot be used until it is defined
Answer» B. No


Discussion

No Comment Found