输出字符串内容 c语言代码
时间: 2023-07-31 13:11:11 浏览: 84
以下是C语言输出字符串内容的代码:
```c
#include <stdio.h>
int main() {
char str[] = "Hello, World!";
printf("%s\n", str);
return 0;
}
```
该程序定义了一个字符串变量str,使用%s格式化符输出字符串内容。在C语言中,字符串以null字符'\0'结尾,因此在定义字符串变量时可以省略字符串长度,编译器会自动在结尾添加null字符。
阅读全文