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.
for(char i=0;i<256;i++){for(char j=0;i<8;j++){printf("%i",i&1);i>>1}printf("\n");}