The correct syntax to access the member of the ith structure in the array of
Answers
Answered by
0
Here's the syntax as a psuedocode, you can use the logic for any language:
for(I=0;I<Len(array)):
array[I]
I+=1
Ex. Python implementation
for i in array:
print(i)
Answered by
0
Answer:
Assuming: struct temp
{
int b;
}s[50];
Similar questions