写一段c语言代码输出helloworld
时间: 2023-09-06 17:09:16 浏览: 82
一个C语言的helloworld程序
Sure, here's some code in C language to output "Hello, world!" on the screen:
```
#include <stdio.h>
int main() {
printf("Hello, world!");
return 0;
}
```
Hope that helps!
阅读全文