Trailing-Edge
-
PDP-10 Archives
-
SRI_NIC_PERM_FS_1_19910112
-
kccdist/lib/stdio/test.c
There are 14 other files named test.c in the archive. Click here to see a list.
#include "stdio.h"
main()
{
int c;
while ((c = getchar()) != EOF)
printf("\\%03o\n", c);
}