我正在使用 Ubuntu,并且使用 Geany 和 CodeBlock 作为我的 IDE。
我要做的是读取一个字符串(比如 "Barack Obama"
)并将其放入一个变量中:
#include <stdio.h>
int main(void)
{
char name[100];
printf("Enter your name: ");
scanf("%s", name);
printf("Your Name is: %s", name);
return 0;
}
产出:
Enter your name: Barack Obama
Your Name is: Barack
我怎样才能让程序读取整个名称?