int sum_func (int x, int y) // function declaration {
int z = 0;
z = x+y ;
return z; // return the value
}
void setup () {
Statements // group of statements
}
Void loop () {
int result = 0 ;
result = Sum_func (5,6) ; // function call
}
第二种方法,称为函数定义或声明,必须在循环函数的下面声明,它包括:
函数返回类型
函数名称
函数参数类型,这里必须添加参数名称
函数体(调用函数时执行的函数内部的语句)
以下示例演示了使用第二种方法的函数声明。
例子
int sum_func (int , int ) ; // function prototype
void setup () {
Statements // group of statements
}
Void loop () {
int result = 0 ;
result = Sum_func (5,6) ; // function call
}
int sum_func (int x, int y) // function declaration {
int z = 0;
z = x+y ;
return z; // return the value
}