Skip to content

Instantly share code, notes, and snippets.

@khzaw
Created December 10, 2014 20:45
Show Gist options
  • Save khzaw/a81e813e22e5b4d9c0a2 to your computer and use it in GitHub Desktop.
Save khzaw/a81e813e22e5b4d9c0a2 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(void) {
int i = 37;
float f = *(float*)&i;
cout << f << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment