For what it's worth, you can occasionally save yourself a few lines of
code by substituting in values directly:
> c = a + b;
> printf("%d + %d = %d\n", a, b, c);
...becomes...
printf("%d + %d = %d\n", a, b, a + b);
--
frigidcode.com
indicium.us