#include "header.h" //Converts float x (with 0<=x<=1) to binary int FloatToBin(float x, unsigned int * bp){ int i; unsigned int bit; float remainder = x; if(x<0.0 || x>1.0) return 0; for(i=0; i