#include "header.h" int PrintBin(void) { int n; printf("0."); for(n=0;n<32;n++) { printf("%d",BinVect[n]); //prints each element in the vector containing the binary number } printf("\t"); return 1; }