Discussion :: Structures, Unions, Enums
-
Point out the error in the program?
struct emp { int ecode; struct emp *e; };
Answer : Option C
Explanation :
This type of declaration is called as self-referential structure. Here *e is pointer to a struct emp.
Be The First To Comment