c语言如何输入字符串

733
2024/1/5 5:36:50
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C语言中,可以使用scanf函数或gets函数来输入字符串。

  1. 使用scanf函数:

    #include <stdio.h>
    
    int main() {
        char str[100];
        
        printf("请输入字符串:");
        scanf("%s", str);
        
        printf("您输入的字符串是:%s\n", str);
        
        return 0;
    }
    
  2. 使用gets函数:

    #include <stdio.h>
    
    int main() {
        char str[100];
        
        printf("请输入字符串:");
        gets(str);
        
        printf("您输入的字符串是:%s\n", str);
        
        return 0;
    }
    

注意:使用gets函数时要注意字符串的长度,避免溢出。推荐使用fgets函数来输入字符串,可以指定字符串的最大长度,避免溢出问题。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c语言遍历字符串的方法是什么