Name: Anonymous 2012-10-07 19:34
SUPERBOLD
#include <locale.h>
#include <stdio.h>
int main(void)
{
int c;
if (setlocale(LC_ALL, "") == NULL)
return -1;
while (EOF != (c = getchar())) {
if (c <= '~' && c >= '`')
printf("%c%c%c", -17, -67, (-128 + (c - '`')));
else if (c < '`' && c >= '!')
printf("%c%c%c", -17, -68, (-128 + (c - ' ')));
else
printf("%c", c);
}
}