fork download
  1. #include <iostream>
  2. #include <string.h>
  3.  
  4.  
  5. int main ()
  6. {
  7. char str[] = "1,2,аб";
  8. char delim[] = ",";
  9. char * pch = strtok (str,delim);
  10.  
  11. while (pch != NULL)
  12. {
  13. printf("%s ", pch);
  14. pch = strtok (NULL, delim);
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 4508KB
stdin
Standard input is empty
stdout
1 2 аб