【小记备忘】之sscanf 安全方法 sscanf_s【2014.04.23】

欢迎加入我们的QQ群,无论你是否工作,学生,只要有c / vc / c++ 编程经验,就来吧!158427611 


sscanf_s 使用的时候,要指定最大长度。。

    static const char *s_formatBaseSourceString = "{#%16s}{#%12s}"; //{#MyOutputFileName}{#MyAppVerPath}  
    char appVerKey[20] = {0};
    char outputNameKey[20] = {0};

    sscanf_s(sourceString.c_str(),s_formatBaseSourceString,outputNameKey,_countof(outputNameKey),appVerKey,_countof(appVerKey));

不然会崩溃。。。。。擦擦

欢迎加入我们的QQ群,无论你是否工作,学生,只要有c / vc / c++ 编程经验,就来吧!158427611 

你可能感兴趣的:(【C++】,【程序员的日子】,【代码备忘】,【C】,【VC】,【小记备忘】,【原创之味】)