【发布时间】:2018-01-28 17:14:28
【问题描述】:
我正在制作一个程序,它可以读取字符作为输入,然后将它们输出到用户指定的文件中。我认为它正在工作,但现在它不会编译。代码如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main()
{
int c = 0;
char FileName[100] = "";
FILE *fp;
printf("Please input the title of the file you're interested in: ");
scanf("%100s", FileName);
fp = fopen(FileName, "w");
if (fp == NULL)
{
perror(NULL);
exit(0);
}
printf("Please input what you want in your file \n(Press Ctrl+Shift+A to
end the program):");
for (c = getchar(); c != 1; c = getchar())
{
if (c == '\n')
printf("");
fputc(c, fp);
}
if (c == 1);
{
printf("\nCtrl+Shift+A is a correct ending.\n\n");
}
fclose(fp);
}
在我试图找出问题的过程中,我发现问题出现在 FILE *fp 和 fopen 上。当对文件的引用被注释掉时,代码至少可以编译。我的输出告诉我使用 fopen_s(),但我不确定该函数是如何工作的,或者我当前的代码是否可以使用它,因为它不适用于 fopen()。如果有帮助,我正在使用 Microsoft Visual Studio。我没有收到错误消息,但这是输出中的内容:
1>------ Build started: Project: Project1, Configuration: Debug Win32 ------
1>Exercise2.c
1>c:\users\djmcn\documents\visual studio 2017\projects\1.9\exercise2.c(18):
error C4996: 'scanf': This function or variable may be unsafe. Consider
using scanf_s instead. To disable deprecation, use
_CRT_SECURE_NO_WARNINGS. See online help for details.
1>c:\program files (x86)\windows
kits\10\include\10.0.16299.0\ucrt\stdio.h(1272): note: see declaration of
'scanf'
1>c:\users\djmcn\documents\visual studio 2017\projects\1.9\exercise2.c(20):
error C4996: 'fopen': This function or variable may be unsafe. Consider
using fopen_s instead. To disable deprecation, use
_CRT_SECURE_NO_WARNINGS. See online help for details.
1>c:\program files (x86)\windows
kits\10\include\10.0.16299.0\ucrt\stdio.h(207): note: see declaration of
'fopen'
1>Done building project "Project1.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
【问题讨论】:
-
您还应该发布您收到的错误消息。
-
我很抱歉@AndrewHenle,我第一次在这里发帖我应该更清楚。
标签: c visual-studio file-handling