编写一个c程序,输出*********hello word
时间: 2024-03-11 19:42:14 浏览: 96
hello程序的编写
4星 · 用户满意度95%
要编写一个C程序来输出"*********hello world",可以使用循环和字符串输出函数来实现。以下是一个简单的示例程序:
```c
#include <stdio.h>
int main() {
int i;
for (i = 0; i < 9; i++) {
printf("*");
}
printf("hello world\n");
return 0;
}
```
这个程序使用了一个for循环来输出9个星号(*),然后使用printf函数输出"hello world"并换行。最后,返回0表示程序正常结束。
阅读全文