blob: 2ac7508f0fbc117928e37051ddc4a916335a32b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* IMPORTANT: leave this comment in the first line of this source file. */
/* this will guarantee that line 1 contains no code. */
#include <stdio.h>
int
main(argc, argv)
int argc;
char **argv;
{
int i = 1;
while (i < argc)
printf ("%s ", argv[i++]);
return 0;
}
|