Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
390 B

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int __cdecl main(int argc, char **argv)
{
unsigned long *pul;
double f;
if (argc <= 1)
printf("usage: f2hex [float number] ==> output is hex\n");
else
{
f = strtod(argv[1], 0);
pul = (unsigned long *) &f;
printf("%f = 0x%08lx %08lx", f, pul[1], pul[0]);
}
return -1;
}