int *ptr; int arr[5]; // store the address of the first // element of arr in ptr ptr = arr; ///////// same as above int *ptr; int arr[5]; ptr = &arr[0];