Guest User

Untitled

a guest
Jun 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main()
  5. {
  6.         char *para = "M:hi:M";
  7.  
  8.         strtok(para, ":");
  9.  
  10.         return 0;
  11. }
Add Comment
Please, Sign In to add comment