summaryrefslogtreecommitdiff
path: root/pointer.c
blob: 8df39eba1e7d1585ef0cb32b257ac763cccd0ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <string.h>

int main(int argc, const char *argv[])
{
  char message[20];
  char *pointer;
  char *pointer2;


  strcpy(message, "Hello, world!\n");
  pointer = message;
  printf("%s", pointer);

  pointer2 = pointer + 2;
  printf("%s", pointer2);
  strcpy(pointer2, "y you guys!\n");
  printf("%s", pointer);

  return 0;
}