P206. WAP to print the binary format of a float using UNION.
#include<stdio.h>
union
U
{
int num;
float f;
};
void
main()
{
union U u1;
u1.f=23.5;
int pos;
for(pos=31;pos>=0;pos--)
printf("%d",u1.num>>pos&1);
printf("\n");
}
Comments
Post a Comment