mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
10 lines
92 B
C
10 lines
92 B
C
main()
|
|
{ float x,y,z;
|
|
|
|
x = 1.0;
|
|
y = 2.0;
|
|
z = x * y;
|
|
|
|
printf ("%0lx\n", *((int *)&z));
|
|
}
|