获取您的
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> int main() { // Create a string char fullName[30]; // Ask the user to input some text (full name) printf("Type your full name and press enter: \n"); // Get the text fgets(fullName, sizeof(fullName), stdin); // Output the text printf("Hello %s", fullName); return 0; }
输入您的全名并按回车键