#include "header.h" //Again, a method used for testing things. //Splits it up into gropus of 4 digits. int printbin(unsigned int x) { int i; unsigned int bit, mask=1; for (i=(entries-1); i>=0; i--) { bit = (x>>i)& mask; //The i'th digit of x &'d with 1. if ((i+1) % 4 == 0){printf(" ");}//Add space every 4... printf("%u",bit);//Print the character. } printf("\n");//Print out the resulting string, by summoning a newline. return 0; }