Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- ////////////////////////////////////////////////////
- int main(int argc, char **argv) //
- {
- printf("argc = %d\n", argc);
- for(int i = 0; i < argc; i ++)
- {
- printf("%d) argv[%d] = %s\n", i, i, argv[i]);
- }
- system("pause");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement