-->
当前位置:首页 > 题库

PROGRAMMING:Example of nonparametric function

Luz5年前 (2021-05-10)题库461
Please execute the following code to analyze and understand the meaning of the function.
```
#include
void print_ line(){
printf("===========================\n");
}
void print_ message(){
printf("This is a C program.\n");
}
int main(){
print_ line();
print_ message();
print_ line();
return 0;
}
```
###Input example:
```in
```
###Output example:
```out
===========================
This is a C program.
===========================
```







answer:If there is no answer, please comment