The correct syntax to access the member of the ith structure in the array of structures is?
Assuming: struct temp
{
int b;
}s[50];
Assuming: struct temp
{
int b;
}s[50];A. s.b.[i];
B. s.[i].b;
C. s.b[i];
D. s[i].b;
Answer: Option D
Related Questions on Structure and Union
Which of the following can be a member of a structure?
A. Function
B. Another structure
C. Enumeration
D. All of the above

Join The Discussion