int myArray[10];
it is said that array names are address information.
what i want to ask is
does myArray mean exactly the same thing with &myArray [0]
if so, why sizeof(myArray ) is not equal to sizeof(&myArray [0]).
1 -what is the relation and difference between myArray and &myArray [0]
2- what is the relation and difference between (*myArray ) and myArray [0]
thanks in advance...
it is said that array names are address information.
what i want to ask is
does myArray mean exactly the same thing with &myArray [0]
if so, why sizeof(myArray ) is not equal to sizeof(&myArray [0]).
1 -what is the relation and difference between myArray and &myArray [0]
2- what is the relation and difference between (*myArray ) and myArray [0]
thanks in advance...
Comment