Schneiden Sie den ersten Teil von String C.

char *foo = "abcdef";
foo += 3;
printf("%s", foo); //will print def
Plain Peacock