Guest User

Untitled

a guest
Jul 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void main(int argc, char * argv)
  4. {
  5. printf("argc = %d\n");
  6.  
  7. if(argc)
  8. for(int x = 0; x< argc; x++)
  9. printf("argv[x] = %s\n", x, argv[x];
  10.  
  11. return;
  12. }
Add Comment
Please, Sign In to add comment