Potong bagian pertama dari string C
char *foo = "abcdef";
foo += 3;
printf("%s", foo); //will print def
Plain Peacock
char *foo = "abcdef";
foo += 3;
printf("%s", foo); //will print def