编写c程序在屏幕上输出hello world!
时间: 2024-05-19 15:09:30 浏览: 116
技能训练-程序设计基础(C语言课件)
当您编写C程序时,可以使用printf函数在屏幕上输出“Hello World!”。
下面是一个简单的C程序示例,可以实现上述功能:
```
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}
```
在上述程序中,`#include <stdio.h>`是头文件,`printf()`是标准输出函数,它向标准输出设备(通常是终端屏幕)打印输出。`\n`是转义字符,表示换行符。
阅读全文