#include #include using namespace std; int main() { char c[20] = "salut", *t; strncpy(c+3, "ata", 2); t = strtok(c, "l"); t = strtok(NULL, "l"); cout << t; return 0; }