使用c语言输hello world
时间: 2023-10-01 15:08:14 浏览: 88
hello world_helloworld_
Sure, here's a simple C program to print "Hello, World!" on the console:
```c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
```
You can compile and run this program to see the output "Hello, World!" on the console.
阅读全文