Jonathan S. Shapiro wrote:
> I suspect the answer is that Swaroop is emitting character constants
> incorrectly -- the algorithm in this case should be:
>
> if (c < 255 && isprint(c)) printf("'%c'", c);
> else printf("%d", c);
Character emission is now done according to this algorithm.
Swaroop.