V5/usr/source/s1/echo.c

Compare this file to the similar file:
Show the results in this format:

main(argc, argv)
int argc;
char *argv[];
{
	int i;

	argc--;
	for(i=1; i<=argc; i++)
		printf("%s%c", argv[i], i==argc? '\n': ' ');
}