Can you read this

#include
#include
using namespace std;
int main() {
char s[]=“chandra ,sekhar,srkr,college”;
char *t=strtok(s,">=‘A’&&<=‘Z’");
while(t!=NULL)
{
cout<<t<<endl;
t=strtok(s,">=‘A’&&<=‘Z’");
}
return 0;
//cout<<“Hello World!”;
}
i am getting output as
I
m
CompetitveProgrammer.
and how to pass dellimeter to get tokens for such questions

hey @Chandra123, we cannot pass range like this in strtok, however what you are trying to do will not solve this problem but can be done like this : https://ide.codingblocks.com/s/132772