#include #include int main(int argc, char** argv) { int i = 0; for (i = 0; i < argc; i++) { printf("Argument[%d] = %s\n", argv[i]); } return 0; }