#include <stdio.h> int main(int argc, char *argv[]) { printf("the program is %s\n", argv[]); int i = argc; printf("the num of arg is %d\n", argc); for(i=; i<argc; i++) { printf("the %dth of arg is %s\n", i, argv[i]); } return ; }