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