Home » C Programming » 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; };

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!