I am using the following code to tokenize the string in C and using " ," to make tokens but i wanted to know when it make token of string when " " came and when "," occur in the string.
char *pch;
pch = strtok(buffer, ", ");
while (pch!=NULL) {
printf("%s\n", pch);
pch = strtok(NULL, " ,");
}