I\'m trying to figure out how to cut part of a string in C. For example you have this character string \"The dog died because a car hit him while it was crossing the road\" how
http://www.cplusplus.com/reference/cstring/
You can use functions like strstr (to get substring), strtok (split using some token),