argv.c (116B)
1#include <stdio.h> 2 3int 4main(int argc, const char **argv) 5{ 6 for (int i = 0; i < argc; i++) { 7 puts(argv[i]); 8 } 9}