Computer Science, asked by thubetanuja9, 1 day ago

#include<stdio.h>
void main()
{
int i;
struct a
{
int arr[5];
};
struct a p={ 1,2,3,4,5},q;
q=p;
for(i=4; i>=0; --i)
{
printf("%d",q.arr[i]);
}​

Answers

Answered by tejaspawar1743
0

Answer:

what is actually your question are you getting any error it's c language yaa?

Similar questions