{{keywords>wiki library source code example reference}} ===== float ===== float 4 Byte 1.2E-38 - 3.4E+38 precision 6 ===== C Sourcecode Example ===== #include /* including standard library */ //#include /* uncomment this for Windows */ int main(void) { printf("float: %d bytes\n", sizeof(float) ); return 0; }