c语言 error C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
生活随笔
收集整理的這篇文章主要介紹了
c语言 error C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
問題:
在使用visual studio 2013,進(jìn)行調(diào)試執(zhí)行代碼時(shí),出現(xiàn)如下錯(cuò)誤:
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)
報(bào)錯(cuò)消除
正確代碼:
#include <stdio.h>
#include <memory.h>
#include <string.h>
#pragma warning(disable:4996)
void main()
{
char ss[] = "love china";
strupr(ss); /*把字符全部轉(zhuǎn)為大寫*/
printf("string ss:%s
", ss);
}
總結(jié)
以上是生活随笔為你收集整理的c语言 error C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 搜索公网上所有使用了SAP BSP技术的
- 下一篇: Color 颜色码-英文名称-十六进制-