Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.46 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Non-visible char in const char * as strtok() delimiter
  2. `strtok(char * StringToSplit, const char * Delimiters)`
  3.        
  4. `const char delim[] = 10;`
  5.        
  6. `const char * delim = 10;`
  7.        
  8. `char delim = 10;`
  9. `(ofc strtok(..., &delim))`
  10.        
  11. `char delim[] = "#";`  
  12. `delim[0] = 10;`
  13.        
  14. `char tmp[] = "#";`  
  15. `tmp[0] = 10;`  
  16. `const char *delim = tmp;`
  17.        
  18. const char *delim = "n";
  19.        
  20. const char delim[] = 10;
  21.        
  22. const char delim = 10;
  23.        
  24. char delim[] = "#";
  25.        
  26. char delim = '#';