What is the difference between stdint.h and inttypes.h?
If none of them is used, uint64_t is not recognized but with either of them it is a defined type.
|
feedback
|
|
See the "I'm Feeling Lucky" first Google entry for inttypes.h. To those who think this is too terse: no, I don't think it's useful to copy the content in the first paragraph of the Wikipedia entry here onto StackOverflow. If somebody goes to the article they might learn more than whatever I would spoonfeed them. | ||||
|
feedback
|
stdint.hIncluding this file is the "minimum requirement" if you want to work with the specified-width integer types of C99 (i.e. "int32_t", "uint16_t" etc.). If you include this file, you will get the definitions of these types, so that you will be able to use these types in declarations of variables and functions and do operations with these datatypes. inttypes.hIf you include this file, you will get everything that stdint.h provides (because inttypes.h includes stdint.h), but you will also get facilities for doing printf and scanf (and "fprintf, "fscanf", and so on.) with these types in a portable way. For example, you will get the "PRIu16" macro so that you can printf an uint16_t integer like this:
| |||
|
feedback
|
#includes stdint.h. – Mr. Shickadance Sep 29 '11 at 12:56