Hi,
Could please anyone clarify about pointer and array in C?
If I have:
int arr[10];
The following two commands will be the same: arr and &arr[0].
What about &arr? Is it not the same thing?
Could please anyone clarify about pointer and array in C?
If I have:
int arr[10];
The following two commands will be the same: arr and &arr[0].
What about &arr? Is it not the same thing?
Comment