#include int main(int argc, char* argv[]) { printf("argc %d\n", argc); if(argc > 0) { printf("arg1 %s\n", argv[0]); } return(0); }