Discussion :: Structures, Unions, Enums
-
Point out the error in the program?
typedef struct data mystruct; struct data { int x; mystruct *b; };
Answer : Option C
Explanation :
Here the type name mystruct is known at the point of declaring the structure, as it is already defined.
Be The First To Comment