函数声明:
int fun(int length, int width);
函数定义:
int fun(int length, int width){ }
在函数定义中,大括号代替了分号的作用,因为大括号括起了一条或者一组语句,所以就不需要分号了。
函数声明:
int fun(int length, int width);
函数定义:
int fun(int length, int width){ }
在函数定义中,大括号代替了分号的作用,因为大括号括起了一条或者一组语句,所以就不需要分号了。