does anybody have any idea what's going on here?
#include <stdio.h>
int main()
{
float a = 65.375;
char *p;
int i;
p = (char*)&a;
printf("%c\n",*p);
for(i=0;i<=3;i++)
printf("%02x",(unsigned char)p);
printf("\n");
printf("\n");
return 0;
}
Hi Guest we just wanted to alert you to a major change in the forum. We will no longer be allowing the posting of outgoing links. Please use the attachment feature to attach media to your posts.