意思是编译器觉得fscanf不安全,叫你考虑用一下fscanf_s这个函数来代替fscanf,fscanf_s比fscanf多使用了一个参数 fscanf函数原型: intfscanf( FILE *stream,constchar *format [, argument ]... fscanf_s函数原型: intfscanf_s( FILE *stream,constchar *format [, argument ]... fscanf_s的第四个参数是最多...
你的程序没贴完整,你看看其他地方哪里用了fscanf_s函数 你使用这个函数时,第一个参数必须是FILE *类型的。FILE *类型变量如何获得,例如:FILE *fp;fp = fopen("aaa.txt", "r+");
fscanf_s与scanf_s的宽度参数与缓冲区参数分析 2019-04-25 20:26 −... Luv3 0 7197 关于链表的功能(排序,添加,删除,判断长度,判断是否为空,遍历) 2019-12-22 19:32 −#include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct node { ... ...