gpt4 book ai didi

c - C中的用户输入字符串变量

转载 作者:太空宇宙 更新时间:2023-11-04 04:59:10 24 4
gpt4 key购买 nike

所以我正在学习C编程语言,我想运行一个基本脚本,用户在其中输入一个变量,打印出来的变量就是用户输入的变量,这很简单,但是,代码我写了一个随机的东西,与代码无关,请帮忙。

#include <stdio.h>
char main(void){
char var[3];
printf("Enter your name: ");
scanf("%1f", &var);
printf("%s", &var);

}

最佳答案

#include <stdio.h>
void main(void){
char var[20];
printf("Enter your name: \n");
scanf("%s", var); // Note: %s is for char arrays and not %f(floats)
printf("%s", var); // Note: no ampersand here

}

关于c - C中的用户输入字符串变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43483124/

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