Access the first memory address of the array and the array's first element. - C Pointer

C examples for Pointer:Array Pointer

Description

Access the first memory address of the array and the array's first element.

Demo Code

#include <stdio.h> 
int main()//from www.  j av  a2s .c o  m
{ 
   int iArray[5] = {1,2,3,4,5}; 
   int *iPtr = iArray; 
   printf("\nAddress of pointer: %p\n", iPtr); 
   printf("First address of array: %p\n", &iArray[0]); 
   printf("\nPointer points to: %d\n", *iPtr); 
   printf("First element of array contains: %d\n", iArray[0]); 
}

Result


Related Tutorials