gpt4 book ai didi

scanf 后 CLion 不会在控制台中打印

转载 作者:行者123 更新时间:2023-11-30 21:36:38 31 4
gpt4 key购买 nike

CLion 中的控制台在扫描输入后不会打印行,但在 iTerm 中编译后一切正常。代码:

#include <stdio.h>
#include <stdlib.h>
int main() {
char personName;
printf("Hello, what is your name?\n");
scanf("%s", personName);
printf("Hello, %s\n", personName);
return 0;
}

我刚刚在 CLion 控制台中得到了这个:

Hello, what is your name?
Mike

Process finished with exit code 11

最佳答案

您需要对 personName 使用数组。代码将是,

#include <stdio.h>
#include <stdlib.h>
int main() {
char personName[32];
printf("Hello, what is your name?\n");
if(scanf("%s", personName))
printf("Hello, %s\n", personName);
return 0;
}

关于scanf 后 CLion 不会在控制台中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47360964/

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