在C语言中,可以使用printf()函数来输出字符串。首先需要包含头文件#include<stdio.h>,然后使用双引号将字符串括起来作为printf()函数的参数。下面是一个简单的示例:
printf()
#include<stdio.h>
#include<stdio.h> int main() { printf("Hello, World!\n"); return 0; }
在这个示例中,printf()函数会输出字符串"Hello, World!",并在最后添加换行符\n。
\n