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






Arrays and pointers: char array

Arrays and pointers: char array

#include <stdio.h>

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

   printf("\nAddress of second element: %p", &s[1]);
   printf("\nValue of s+1      : %p\n", s+1);
}



           
       








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 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