Files
eg/dev/c/main.c

8 lines
163 B
C
Raw Permalink Normal View History

2025-12-06 13:55:40 -06:00
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]){
printf("There were %d arguments in %s\n", argc, argv[0]);
return EXIT_SUCCESS;
}