#include<stdio.h> //main is a function called by the op system int main(int argc, char *argv[]) { printf("%d\n", argc); for(int i=0; i<argc; i++) printf("%s\n",argv[i]); }