Discussion :: Declarations and Initializations
-
Which of the structure is incorrcet?
1 : struct aa { int a; float b; };
2 : struct aa { int a; float b; struct aa var; };
3 : struct aa { int a; float b; struct aa *var; };
Answer : Option B
Explanation :
Option B gives "Undefined structure in 'aa'" error.
Be The First To Comment