Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - kcc-6/lib/test/shoarg.c
There are 8 other files named shoarg.c in the archive. Click here to see a list.
#include <stdio.h>

main(argc, argv)
int argc;
char **argv;
{
    int i = 0;

    while (i < argc)
	printf("%2d: %s\n", i, argv[i++]);
}