Arrays and pointers: char array index : Pointer Array « Pointer « C / ANSI-C






Arrays and pointers: char array index

Arrays and pointers: char array index

#include <stdio.h>

void main()
{
   char s[] = "another string";

   printf(" first element: %p\n", s);
   printf(" second element: %p\n", s + 1);
   printf(" third element: %p\n", s + 2);
}



           
       








Related examples in the same category

1.Arrays and pointersArrays and pointers
2.Arrays and pointers taken furtherArrays and pointers taken further
3.Arrays and pointers: char arrayArrays and pointers: char array
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