用C语言编写一个程序,输入以下信息:******+hello!******
时间: 2023-12-13 09:34:22 浏览: 119
hello c语言程序
以下是用C语言编写一个程序,输入******+hello!******的代码:
```c
#include <stdio.h>
int main() {
printf("******+hello!******\n");
return 0;
}
```
运行结果为:
```
******+hello!******
```
阅读全文