#include #include void show_bytes(void *start, size_t len) { printf("%lu bytes from %p:", len, start); for (int i = 0; i < len; i++) { printf(" %.2x", ((unsigned char *)start)[i]); } printf("\n"); } void normalized_demo() { float f5 = .375; show_bytes(&f5, 4); } int main() { normalized_demo(); return 0; }