Skip to content

Instantly share code, notes, and snippets.

@Tynael
Created November 20, 2022 14:47
Show Gist options
  • Save Tynael/8ca8fb3c6be0c85c19e8e69c7ad45062 to your computer and use it in GitHub Desktop.
Save Tynael/8ca8fb3c6be0c85c19e8e69c7ad45062 to your computer and use it in GitHub Desktop.
Make Large Numbers Easier to Read
#include <iostream>
using namespace std;
int main()
{
long long int num1 = 1'23'456;
long long int num2 = 12'34'56;
long long int num3 = 123'456;
return 0;
}
@Tynael
Copy link
Author

Tynael commented Nov 20, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment