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






Arrays and pointers taken further

Arrays and pointers taken further


#include <stdio.h>

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

   printf("\n         value of second element: %c\n", s[1]);
   printf("value of s after adding 1: %c\n", *(s + 1));
}


           
       








Related examples in the same category

1.Arrays and pointersArrays and pointers
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