7 lines
234 B
C
7 lines
234 B
C
// Prints 1st and 3rd command line arguments without check they are
|
|
// there. May kersplode if insufficient args are provided.
|
|
#include <stdio.h>
|
|
int main(int argc, char *argv[]){
|
|
printf("%s\n",argv[1]);
|
|
printf("%s\n",argv[3]);
|
|
}
|