在C语言中,可以使用printf()函数来输出字符串。首先需要包含头文件#include<stdio.h>,然后使用双引号将字符串括起来作为printf()函数的参数。例如:
printf()
#include<stdio.h>
#include<stdio.h> int main() { printf("Hello, World!\n"); return 0; }
这段代码会在控制台输出字符串 “Hello, World!” 并换行。注意字符串末尾的\n是一个转义字符,表示换行。
\n