It Just Can’t Be Done
Test your C programming skills by solving the given puzzle about integer overflow.
We'll cover the following...
Puzzle code
...Press + to interact
#include <stdio.h>int main(){char a;for( a=0; a<200; a++ )printf("%3d ", a);putchar('\n');return(0);}
...