main.c revision 49180e08afc7cf03413ab108bc71c14e9de1a880
#include "header.h"
int main(int argc, char **argv) {
(void)printf("Program %s executed with the following arguments:\n", argv[0]);
for (int i = 1; i < argc; ++i) {
(void)printf("[%s] ", argv[i]);
}
(void)printf("\n");
return EXIT_SUCCESS;
}