0
点赞
收藏
分享

微信扫一扫

c语言 error C4996: 'strupr': The POSIX name for this item is deprecated. Instead,

问题:

在使用visual studio 2013,进行调试执行代码时,出现如下错误:

error C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant

name: _strupr. See online help for details.

解决办法:

在头文件尾部添加

#pragma warning(disable:4996)

报错消除

正确代码:

#include <stdio.h>
#include <memory.h>
#include <string.h>
#pragma warning(disable:4996)
void main()
{
char ss[] = "love china";
strupr(ss); /*把字符全部转为大写*/
printf("string ss:%s\n", ss);
}

  

                                                                                                                                                                                                                                                                                                                    



举报

相关推荐

C++:error C4996解决方法

0 条评论