Discussion :: Structures, Unions, Enums
-
Point out the error in the program?
struct emp { int ecode; struct emp e; };
Answer : Option A
Explanation :
The structure emp contains a member e of the same type.(i.e) struct emp. At this stage compiler does not know the size of sttructure.
Be The First To Comment