Page 1 of 1

Which of the structures is incorrect?1:struct s1{int x;long int li;};2:struct s2{float f;struct s2 *s;};3:struct s3{floa

Posted: Wed Aug 03, 2022 9:20 am
by answerhappygod
Which of the structures is incorrect?1:struct s1{int x;long int li;};2:struct s2{float f;struct s2 *s;};3:struct s3{float f;struct s3 s;};

A. 1
B. 2
C. 3
D. 2, 3