/** * * Just print the command line arguements, whatever they may be * @author gtowell * Created: March 10, 2021 * * **/ #include int main(int argc, char const *argv[]) { for (int i = 0; i < argc; i++) { printf("%d %s\n", i, argv[i]); } return 0; }