scanf_s 和 ->
我是用VS2017,为什么使用scanf存不进去数据,麻烦大佬们帮忙看看#include <stdio.h>
#include <stdlib.h>
struct Book
{
char title;
char author;
struct Book *next;
};
void getInput(struct Book *book);
void addBook(struct Book **library);
void printLibrary(struct Book *library);
void getInput(struct Book *book)
{
printf("请输入书名:");
scanf_s("%s", book->title);//这里
printf("请输入作者:");
scanf_s("%s", book->author);//和这里
}
void addBook(struct Book **library)
{
struct Book *book, *temp;
book = (struct Book *)malloc(sizeof(struct Book));
if (book == NULL)
{
printf("内存分配失败了!\n");
exit(1);
}
getInput(book);
if (*library != NULL)
{
temp = *library;
*library = book;
book->next = temp;
}
else
{
*library = book;
book->next = NULL;
}
}
void printLibrary(struct Book *library)
{
struct Book *book;
int count = 1;
book = library;
while (book != NULL)
{
printf("Book%d: ", count);
printf("书名: %s\n", &book->title);
printf("作者: %s\n", &book->author);
book = book->next;
count++;
}
}
int main(void)
{
struct Book *library = NULL;
int ch;
while (1)
{
printf("请问是否需要录入书籍信息(Y/N):");
do
{
ch = getchar();
} while (ch != 'Y' && ch != 'N');
if (ch == 'Y')
{
addBook(&library);
}
else
{
break;
}
}
printf("请问是否需要打印图书信息(Y/N):");
do
{
ch = getchar();
} while (ch != 'Y' && ch != 'N');
if (ch == 'Y')
{
printLibrary(library);
}
return 0;
} 冰逸琉璃 发表于 2021-3-24 16:10
那该怎么用,函数加个_s不是微软自己发明安全函数吗
用了 微软的发明,你在跨平台开发的时候会比较头疼
你需要把你写的代码中的所有 _s 去掉
但是你又必须在 微软的环境再加上 _s
scanf_s只能读取一个字符,而且不能读取空格,你这个不是数组了,就算用了%s似乎也不能直接全部读取 角落里的陌生人 发表于 2021-3-24 15:53
scanf_s只能读取一个字符,而且不能读取空格,你这个不是数组了,就算用了%s似乎也不能直接全部读取
我又换成整形试试了下,似乎还是不行{:10_266:} 不要用 scanf_s
不要用 _s 的版本
_s 的版本和没有 _s 的版本使用方法不一样
https://baike.so.com/doc/3719211-3908076.html
很多带"_s"后缀的函数是为了让原版函数更安全,传入一个和参数有关的大小值,避免引用到不存在的元素,有时hacker可以利用原版的不安全性黑掉系统。比如:char d;写成scanf_s("%s",d,20);才是正确的,有这个参数20使准确性提高。 ANSI C中没有scanf_s(),只有scanf(),scanf()在读取时不检查边界,所以可能会造成内存访问越界,例如分配了5字节的空间但是读入了10字节
不要用 _s 的版本 人造人 发表于 2021-3-24 16:07
不要用 scanf_s
不要用 _s 的版本
那该怎么用,函数加个_s不是微软自己发明安全函数吗 人造人 发表于 2021-3-24 16:13
用了 微软的发明,你在跨平台开发的时候会比较头疼
你需要把你写的代码中的所有 _s 去掉
但是你又必须 ...
嗦嘎,懂了懂了,大佬,那有没有除了VS以外的IDE推荐一下{:10_277:} 冰逸琉璃 发表于 2021-3-24 16:40
嗦嘎,懂了懂了,大佬,那有没有除了VS以外的IDE推荐一下
vim 不错
页:
[1]