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