zoukankan      html  css  js  c++  java
  • This project fills the absence of stdint.h and inttypes.h in Microsoft Visual Studio

    http://code.google.com/p/msinttypes/

    msinttypes

    This project fills the absence of stdint.h and inttypes.h in Microsoft Visual Studio. This files were standartized by ISO/IEC as a part of C99standard library. If you want to compile or use C99 compliant project with Microsoft Visual Studio, you will likely find that you're missing these headers. Note though, that just adding these header does not make Visual Studio compiler fully C99 compliant.

    FFMpeg is a good example of library that requires inttypes.h even if you just want to link your program with it.

    More portable version of stdint.h can be find here but it does not implement inttypes.h features, such as printf and scanf format specifiers.

     

    C99中添加了几个新的头文件,VC++中没有,所以需要你自己下载

    判断支持C98 或者 C99 代码

    View Code
    #include<stdio.h>
    #include<tchar.h>
    
    //int main()
    //int _tmain(int argc, _TCHAR* argv[])
    int _tmain()
    {
    #if (defined(__STDC_VERSION__))
     printf("标准C版本:%ld。", __STDC_VERSION__);
    #elif (!defined(__STDC__))
     printf("非标准C!");
    #else
     printf("旧的标准C。");
    #endif
     getchar();
     return 0;
    }

    http://blog.csdn.net/rodmanwu/article/details/6846788

    stdint.h是C99的标准,主要用于统一跨平台数据定义。
    MSVC中不带有这个头文件,直到VS2010(新闻)。

    在之前的版本里面,我们可以:
    (1)下载这个头文件
    download a MS version of this header from:
    http://msinttypes.googlecode.com/svn/trunk/stdint.h
    A portable one can be found here:
    http://www.azillionmonkeys.com/qed/pstdint.h
    (2)将头文件放到(以VS2008为例):
    C:\Program Files\Microsoft Visual Studio 9.0\VC\include


    (以VS2011为例): D:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include 需要 inttypes.h

  • 相关阅读:
    小学数学计算出题小程序(Excel版)
    网页自动化测试技术---SeleniumBasic(VBA网页外挂)
    ODBC链接数据源(PQ学习)
    WPF动态绑定矢量图标
    由数据转为树杈的js 和由一个子节点的id获取所有的父类的id
    面试上机题目--采用vue实现以下页面效果
    html前端上机面试题
    在vue项目中的跨域解决办法
    vue-quill-editor富文本编辑器使用
    vue项目eslint配置 以及 解释
  • 原文地址:https://www.cnblogs.com/logitechlike/p/2873018.html
Copyright © 2011-2022 走看看