给出用c语言编译的hello world代码
时间: 2023-09-07 17:14:52 浏览: 88
用C语言写的输出hello world源代码.zip
Sure, here's a basic "Hello, World!" program in C:
```
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
```
This program will print the message "Hello, World!" to the console when run.
阅读全文