I write a program that gets as an input any string that contain the following characters :
& , > , < , SPACE (e.g " ")
The delimiters are written like this : char delimiters[] = " &<>"; , and I use them with the strpbrk command.
I need to add the delimiter ">>" to this group . How can I do this ?
If I just write : char delimiters[] = " &<>>>"; , the compiler doesn’t treat the >> accordingly .
Any idea how to solve this ?
Thanks
1 Answer