Which of the structures is incorrect?

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

Answer: C

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments