1 #include "header.h" 2 3 /* Added comment */ 4 main(int argc,char ** argv)5int main(int argc, char **argv) { 6 7 printf("Program %s executed with the following arguments:\n", argv[0]); 8 for (int i = 1; i < argc; ++i) { 9 printf("[%s] ", argv[i]); 10 } 11 printf("\n"); 12 13 return EXIT_SUCCESS; 14 } 15