Skip to content

Instantly share code, notes, and snippets.

@SteelPh0enix
Last active July 12, 2017 07:27
Show Gist options
  • Select an option

  • Save SteelPh0enix/a1116d38d659b95a5a0f5a762fa04568 to your computer and use it in GitHub Desktop.

Select an option

Save SteelPh0enix/a1116d38d659b95a5a0f5a762fa04568 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <cmath>
int main() {
int x = 4.2 * std::pow(10., 9.);
unsigned int y = 4.2 * std::pow(10., 9.);
std::cout << x << ", " << y << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment