#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
0
Answer:
what is actually your question are you getting any error it's c language yaa?
Similar questions