forked from aaronbloomfield/pdr
-
Notifications
You must be signed in to change notification settings - Fork 228
/
float_to_hex.cpp.html
30 lines (27 loc) · 1.87 KB
/
float_to_hex.cpp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="GNU source-highlight
by Lorenzo Bettini
http://www.lorenzobettini.it
http://www.gnu.org/software/src-highlite">
<title>float_to_hex.cpp</title>
</head>
<body style="background-color:white">
<pre><i><span style="color:#9A1900">// This should be compiled with the -m32 flag, so as to make the</span></i>
<i><span style="color:#9A1900">// pointer a 32-bit memory address.</span></i>
<b><span style="color:#000080">#include</span></b> <span style="color:#FF0000"><iostream></span>
<b><span style="color:#0000FF">using</span></b> <b><span style="color:#0000FF">namespace</span></b> std<span style="color:#990000">;</span>
<b><span style="color:#0000FF">union</span></b> <span style="color:#008080">foo</span> <span style="color:#FF0000">{</span>
<span style="color:#009900">float</span> f<span style="color:#990000">;</span>
<span style="color:#009900">int</span> <span style="color:#990000">*</span>x<span style="color:#990000">;</span>
<span style="color:#FF0000">}</span> bar<span style="color:#990000">;</span>
<span style="color:#009900">int</span> <b><span style="color:#000000">main</span></b><span style="color:#990000">()</span> <span style="color:#FF0000">{</span>
bar<span style="color:#990000">.</span>f <span style="color:#990000">=</span> <span style="color:#993399">42.125</span><span style="color:#990000">;</span>
cout <span style="color:#990000"><<</span> bar<span style="color:#990000">.</span>x <span style="color:#990000"><<</span> endl<span style="color:#990000">;</span> <i><span style="color:#9A1900">// prints in big-endian</span></i>
<b><span style="color:#0000FF">return</span></b> <span style="color:#993399">0</span><span style="color:#990000">;</span>
<span style="color:#FF0000">}</span>
</pre>
</body>
</html>