howzzat!!.. array in c
say a[10] is an array of integers,and say i is an integer counter.
to print the array elements we say
for (i=0;i<n;i++)
printf("%d",a[i]);
but what if i say
printf("%d",i[a]) ;
???????????????????????????????????????what is the result and why is it so?
|