1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* * File: oct2otp.c * Date: Thu Dec 18 14:39:34 1997 * Author: (norbert) * */ #include <stdio.h> int main() { int c; while ((c=getchar())!=EOF) { if (c>127) printf("@'%o",c); else printf("%c",c); } }