argv

Argument vector inspector
git clone https://git.sinitax.com/sinitax/argv
Log | Files | Refs | sfeed.txt

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}