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.

3
  • Also, C++11 only it seems. Commented May 10, 2013 at 19:35
  • @MichaelPrice, no, it's available in previous C++s as well. Use <stdint.h> instead of <cstdint>. I'm using it today in some code as we speak. :-) Commented Feb 25, 2015 at 14:41
  • @KellyBeard - <cstdint> is only available after C++11 was shipped (as a standard, portable method). <cstdint> and <stdint.h> are not exactly the same thing. Commented May 2, 2015 at 3:19