Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdio>
- #include <cstring>
- int main() {
- char string[100] = "Whatever you want";
- char your_str[100] = "you ";
- char *position = strstr(string, your_str);
- int length = strlen(your_str);
- strcpy(position, position + length);
- puts(string);
- }
Advertisement
Add Comment
Please, Sign In to add comment