Top "Stdint" questions

stdint.

How to print a int64_t type in C

C99 standard has integer types with bytes size like int64_t. I am using the following code: #include <stdio.…

c stdint
Define 16 bit integer in C

I need to declare an integer in the size of 16 bit, in C. I know that short and int sizes …

c integer 16-bit stdint
<cstdint> vs <stdint.h>

What is the difference between stdint.h and cstdint? Both of them are available in MSVC (Visual Studio 2010) and gcc-4.5.1. …

c++ stdint cstdint
Why Microsoft Visual Studio cannot find <stdint.h>?

Possible Duplicate: Visual Studio support for new C / C++ standards? See the text below from wiki: The C99 standard includes …

c++ std stdint
difference between stdint.h and inttypes.h

What is the difference between stdint.h and inttypes.h? If none of them is used, uint64_t is not …

c uint64 stdint
Reasons to use (or not) stdint

I already know that stdint is used to when you need specific variable sizes for portability between platforms. I don't …

c char stdint
Converting 16-bit integer to 8-bit integer?

I'm implementing C code to copy a 16-bit sign and magnitude integer to an 8-bit sign and magnitude integer. Is …

bit-shift stdint cstdint uint16 uint8t
VC6: fatal error C1083: Cannot open include file: 'stdint.h'

When compiling in VC6 I am receiving the error: (fatal error C1083: Cannot open include file: 'stdint.h': No such …

visual-c++-6 stdint
Which C++ standard header defines SIZE_MAX?

I'm working on an existing C++ codebase that happens to use SIZE_MAX in a couple of places. I did …

c++ header size-t stdint