点击上方蓝字关注我,了解更多咨询
1、函数声明,无需实现该函数的功能。函数声明只是一个空壳,不会有特定的函数实现。
2、函数定义,必须实现该函数的功能,要实现函数的实现。
#include<stdio.h>
实例
//使用函数前,需要在main函数前对使用的函数进行声明
int getMax(int, int);void main() {
int t=getMax(12, 21);
printf("%d\n", t);
getchar();
}int getMax(int a, int b) {
if (a > b) {
return a;
}
else {
return b;
}
}
END
*声明:本文于网络整理,版权归原作者所有,如来源信息有误或侵犯权益,请联系我们删除或授权事宜。
戳“阅读原文”我们一起进步