So I'm trying to remove 2 brackets from lines I'm reading from a file.
For some reason when I run my program the characters in between the delimeters is removed.
for examplegreetings pe()ple
would end up asgreetings pe
I'm using a char array of delimiters.char delimiters[] = " ( )";
Why does strtok delete the characters between the parenthesis?