Vidyalelo
C Programming · Q86

Structure and Union

Programming · C Programming · question 86

Q86

The correct syntax to access the member of the ith structure in the array of structures is? Assuming: struct temp int b; s[50];

A.
s.b.[i];
B.
s.[i].b;
C.
s.b[i];
D.
s[i].b;
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board