码迷,mamicode.com
首页 > 其他好文 > 详细

Visual Studio函数被警告安全,如何修改

时间:2014-11-05 21:21:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   sp   

1.今天使用 _itoa函数,出现蛋疼的问题原来又是微软的一套。

bubuko.com,布布扣

 

 

2.如何解决呢?

在第一行添一句:#define _CRT_SECURE_NO_WARNINGS    //关闭安全检查

代码如下:

bubuko.com,布布扣
 1 #define _CRT_SECURE_NO_WARNINGS
 2 # include<stdio.h>
 3 # include<stdlib.h>
 4 int main()
 5 {
 6     int num = 65543;
 7 
 8     printf("十进制为 = %d,十六进制为 = %x,八进制为 = %o\n", num, num, num);
 9 
10     char str[32];
11     _itoa(num, str, 2);
12 
13     printf("二进制为 = %s", str);
14 
15     getchar();
16 }
View Code

 

Visual Studio函数被警告安全,如何修改

标签:style   blog   http   io   color   ar   os   使用   sp   

原文地址:http://www.cnblogs.com/sxmcACM/p/4077284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!