Do you know there are many ways to access the elements of array.
int Num[10];
for(int i=0;i<10;i++)
printf("%d%d%d%d",Num[i],i[Num],*(Num+i),*(i+Num));
Here all the format will give the same result that is every element of Array.
int Num[10];
for(int i=0;i<10;i++)
printf("%d%d%d%d",Num[i],i[Num],*(Num+i),*(i+Num));
Here all the format will give the same result that is every element of Array.