/* more pointers and arrays */ #include int main() { int ar[10]; int *arptr; arptr = ar; printf("Address using the array name %u\n", ar); printf("Address of the first element %u\n", &ar[0]); printf("Address using pointer variable %u\n", arptr); return 0; }