Couper la première partie de la chaîne 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