Arrays and pointers : Pointer Array « Pointer « C / ANSI-C






Arrays and pointers

Arrays and pointers


#include <stdio.h>

void main()
{
   char multiple[] = "I am a string";

   printf("\nThe address of the first array element  : %p", &multiple[0]);
   printf("\nThe address obtained from the array name: %p\n", multiple);
}


           
       








Related examples in the same category

1.Arrays and pointers taken furtherArrays and pointers taken further
2.Arrays and pointers: char arrayArrays and pointers: char array
3.Arrays and pointers: char array indexArrays and pointers: char array index
4.Two-Dimensional arrays and pointers
5.Declare a pointer to an array that has 10 ints in each row: allocate memory to hold a 4 x 10 array