Computer Science, asked by rmirchandani8179, 1 year ago

The correct syntax to access the member of the ith structure in the array of

Answers

Answered by theanonguy
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 abhisheksingh5395
0

Answer:

Assuming: struct temp

{

int b;

}s[50];

Similar questions