[C] strtok void main() { char name[20]; strcpy( name, "babo aaa bbb ccc ddd eee"); char *p; p = strtok( name, " "); if(p) cout