自定义函数
(1)在函数使用之前定义函数
(2)先声明这个函数,然后使用,使用的代码后面定义这个函数
#include <stdio.h>
void syahello(){
println("helloo");
}
int main(){
sayhello(); // 调用的函数要提前写出来,如果要写在后面,需要先在前面声明
}
void syahello(); //提前声明,没有实现
int main(){
sayhello(); // 调用的函数要提前写出来,如果要写在后面,需要先在前面声明
}
void syahello(){
println("helloo");
}
mytest1(); //如果函数没有明确标明函数的返回值类型,则默认为返回int(不要这样写)
print("%d\n",mytest1());