cut first part of string c

Solutions on MaxInterview for cut first part of string c by the best coders in the world

showing results for - "cut first part of string c"
Elisa
11 Apr 2019
1char *foo = "abcdef";
2foo += 3;
3printf("%s", foo); //will print def