#include /*This shows how to bring arguments in from the command line*/ /*when callingthe program. argc is the number of arguments*/ /*In C, the name of the program is the first argument*/ /*USAGE: ./a.out [csample text] [sample text]*/ int main (int argc, char *argv[]){ printf("%d\n", argc); printf("%s\n", argv[0]); printf("%s\n", argv[1]); printf("%s\n", argv[2]); }