#include #include int main() { int c; printf("pid: %d\n", getpid()); while ( (c=getchar()) > 0 ) printf("Received \\%03o\n", c); return 0; }