gpt4 book ai didi

c - 使用用户输入(字符串)打开文件 - C

转载 作者:行者123 更新时间:2023-12-02 06:36:42 24 4
gpt4 key购买 nike

我正在尝试弄清楚如何在 C 中将用户输入用作文件名。这是我编写的简单程序。

#include <stdio.h>
#define MAX 100

int main()
{
FILE *fp;
char name[MAX];


printf("Enter filename: ");
fgets(name, MAX, stdin);

if((fp = fopen(name, "w")) == 0)
printf("File cannot be opened!");

return 0;
}

它总是打印“无法打开文件”。

最佳答案

fgets 在输入中保留换行符。

关于c - 使用用户输入(字符串)打开文件 - C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16895390/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com