在C语言中,可以使用printf函数来打印字符串。例如,要打印一个字符串"Hello, World!",可以使用以下代码:
#include <stdio.h>
int main() {
char str[] = "Hello, World!";
printf("%s\n", str);
return 0;
}
在上面的代码中,我们首先定义了一个字符串数组str
,然后使用printf
函数和%s
格式化符来打印这个字符串。输出结果将会是"Hello, World!"。