84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
printf 语句和 printf_s 语句到底有什么区别在VS2013编译环境当中? 最近,在用VS2013编写C语言的程序,这个问题老是在我脑海里面。另外想问一下为什么,必须用scanf_s,不能用scanf语句呢?
认证高级PHP讲师
The main difference between printf_s and printf is that printf_s checks the format string for valid formatting characters, whereas printf only checks if the format string is a null pointer.
MSDN printf_s
所以,printf和printf_s的区别就在于printf只会检查格式字符串是否为空,而printf_s还会检查用户自定义的格式字符串是否合法。举个例子:
char* test = "Hello world!"; char* formatStr = "%s%d%h\n"; printf(formatStr, test,10); printf_s(formatStr, test, 10);
第二行中给的格式字符串是有问题的,但是第三行printf仍然可以输出“Hello world!10”,执行到第四行的时候就会报错。
MSDN printf_s
所以,printf和printf_s的区别就在于printf只会检查格式字符串是否为空,而printf_s还会检查用户自定义的格式字符串是否合法。举个例子:
第二行中给的格式字符串是有问题的,但是第三行printf仍然可以输出“Hello world!10”,执行到第四行的时候就会报错。