C语言打印字符串的方式主要有以下几种:
使用printf函数打印字符串: printf(“Hello, World!”);
使用puts函数打印字符串: puts(“Hello, World!”);
使用putchar函数逐个打印字符串中的字符: char str[] = “Hello, World!”; int i; for (i = 0; i < strlen(str); i++) { putchar(str[i]); }
使用strcpy函数将字符串复制到一个字符数组中,然后使用printf函数打印字符数组: char str[50]; strcpy(str, “Hello, World!”); printf(“%s”, str);
使用sprintf函数将字符串格式化到一个字符数组中,然后使用printf函数打印字符数组: char str[50]; sprintf(str, “Hello, %s!”, “World”); printf(“%s”, str);
这些都是常见的打印字符串的方式,具体选择哪种方式取决于具体的需求和场景。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: C语言的常量和字符串