#include int main(int argc, char* argv[]) { printf("There are %d arguments\n", argc); printf("The first argument is: %s\n", argv[0]); printf("The second argument is: %s\n", argv[1]); printf("The third argument is: %s\n", argv[2]); return(0); }