/**\
 * Munching squares or something.  Sounds cool in some ways.
\**/
#include <stdio.h>


//unsigned char[16] output = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; ///@edit This was a typo
unsigned char output[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

int main(void) {
    int t = 0;
    printf("Test thingy \n\n");
    for (t = 0; t < 16*16; ++t) {
        if (t % 16 == 0) { //Print the output...
            printf("%u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, \n", output[0],output[1],output[2],output[3],output[4],output[5],output[6],output[7],output[8],output[9],output[10],output[11],output[12],output[13],output[14],output[15]);
        }
        output[t % 16] = (t&t>>8);
    }
printf("Done!\n");
return 0;
}