Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int argument(char *help)
  2. { char word[100];
  3. char *dataTypes[1] = {"int"};
  4. printf("\n");
  5. printf("\n");
  6. for(int i=0; i<100 && help[i]!=' '; i++)
  7. {
  8. word[i]=help[i];
  9. printf("%c", word[i]);
  10. }
  11. if(word == dataTypes[1])
  12. return 1;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement