Possible Duplicate:
Visual Studio support for new C / C++ standards?
See the text below from wiki:
The C99 standard includes definitions of several new integer types to enhance the portability of programs[2]. The already available basic integer types were deemed insufficient, because their actual sizes are implementation defined and may vary across different systems. The new types are especially useful in embedded environments where hardware supports usually only several types and that support varies from system to system. All new types are defined in inttypes.h header (cinttypes header in C++) and also are available at stdint.h header (cstdint header in C++). The types can be grouped into the following categories:
My visual studio can not find any of this files:
<cstdint>
<cinttypes>
<stdint.h>
<inttypes.h>
Why?