Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • What is a type that holds that much? Commented Mar 7, 2012 at 4:11
  • @user1247509: long long is a 64-bit signed integer type you can use on compilers that support it. I recommend that you use long long if you can. Commented Mar 7, 2012 at 4:12
  • usually long long or _int64 in windows. Commented Mar 7, 2012 at 4:12
  • long long is part of C++11, IIRC. Commented Mar 12, 2012 at 20:49