Name: Anonymous 2009-06-15 14:23
Write a C program which outputs binary values of all possible bytes(0-255) as e.g. '00001011\n' in the least space.
int i,b=256;while(b--){i=8;while(i--)putchar(b&(1<<i)?'1':'0');puts("");}