Am I missing something?
/* rtsb.c */
void run_show_bytes(int val)
{
int ival = val;
float fval = (float) ival;
int *pval = &ival;
printf("%f\n\n", fval); // THIS PRINTS OUT A FLOAT VALUE
show_int(ival);
show_float(fval);
show_pointer(pval);
}
/* show_bytes.c */
#include <stdio.h>
typedef unsigned char *byte_pointer;
void show_bytes (byte_pointer start, int len)
{
int i;
for (i = 0; i < len; i++)
{
printf(" %.2x", start[i]);
}
printf("\n");
}
void show_int(int x)
{
show_bytes((byte_pointer) &x, sizeof(int)); // WORKS
}
void show_float(float x)
{
show_bytes((byte_pointer) &x, sizeof(float)); // prints 0x 00 00 00 00
}
void show_pointer(void *x)
{
show_bytes((byte_pointer) &x, sizeof(void *)); // WORKS
}


Sign In
Create Account


Back to top









