#include #define LENGTH 32 //Number of bits in an int //IS THIS PORTABLE? unsigned int FloatToBin(float x); //Converts float x (with 0<=x<=1) to binary int BinPrint(unsigned int bin); //Prints the binary as 0's and 1's