This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s4-c/P86.c

12 lines
189 B
C

/* Arguments */
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
int i;
for (i = 0; i < argc; i++) {
printf("argv[%d]=%s\n", i, argv[i]);
}
}