在C语言中,可以使用printf函数来输出字符串。
例如:
#include <stdio.h>
int main() {
char str[] = "Hello, World!";
printf("%s\n", str);
return 0;
}
输出结果为:
Hello, World!
在printf函数中,使用%s格式控制符来输出字符串。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言10个经典小程序