11 lines
190 B
C
11 lines
190 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
int main(int argc, char* argv[]){
|
||
|
int i;
|
||
|
char c[100];
|
||
|
for(i=0; i<argc; i++){
|
||
|
printf("%c\n", argv[i][0]);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|