hi all i have simple Problem please tell me the Solution if u know??
main()
{
int a[3][3]={1,2,3,4,5,6,7 ,8,9};
printf("%u %u %u",a[0],a[1],a[2]);
}
when i execute this program i am getting a Fixed address Value(multi
digit value)
can any body explain me ahy this is giving the same value for
different index
Thanks In Advance
-Sachin
main()
{
int a[3][3]={1,2,3,4,5,6,7 ,8,9};
printf("%u %u %u",a[0],a[1],a[2]);
}
when i execute this program i am getting a Fixed address Value(multi
digit value)
can any body explain me ahy this is giving the same value for
different index
Thanks In Advance
-Sachin
Comment