Skip to content

Instantly share code, notes, and snippets.

@abatilo
Created January 15, 2016 07:04
Show Gist options
  • Save abatilo/8c7321405dfb7d7699b1 to your computer and use it in GitHub Desktop.
Save abatilo/8c7321405dfb7d7699b1 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main() {
float a = 999999999999999999;
float b = 1000000000000000000;
cout << (a == b) << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment