gpt4 book ai didi

c - 从 fgets() 输入中删除换行符

转载 作者:行者123 更新时间:2023-11-30 14:47:24 27 4
gpt4 key购买 nike

我正在尝试编写一个非常简单的程序,它要求您输入您的名字,然后它会向您打招呼。代码如下:

#include <stdio.h>

int main() {
char name[30];
printf("Write your name: ");
fgets(name, 30, stdin);
printf("Hello, %s. Nice to meet you.\n", name);
return 0;
}

但是当我编译并运行该程序时,会显示以下输出(输入名称 John Doe ):

Hello, John Doe
. Nice to meet you.

一开始我打算使用gets()显然它没有打印换行符,但是编译器(GCC)提示了它:

the `gets' function is dangerous and should not be used.

如何从使用 fgets() 输入的字符串中删除换行符?

最佳答案

fgets()之后添加这行代码name[strlen(name)-1]='\0';。发生换行是因为fgets()中的终端符号\n而不是\0 > 。所以我们需要它来使其成为\0

修改后的代码:-

#include <stdio.h>
#include <string.h>

int main() {
char name[30];
printf("Write your name: ");
fgets(name, 30, stdin);
name[strlen(name)-1]='\0'; // making '\n' '\0'
printf("Hello, %s. Nice to meet you.\n", name);
return 0;
}

输出:-

Write your name: world
Hello, world. Nice to meet you.

关于c - 从 fgets() 输入中删除换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51310985/

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