c语言中函数的声明和定义
1、函数声明,无需实现该函数的功能。函数声明只是一个空壳,不会有特定的函数实现。
2、函数定义,必须实现该函数的功能,要实现函数的实现。
代码语言:javascript复制#include<stdio.h>
实例
代码语言:javascript复制//使用函数前,需要在main函数前对使用的函数进行声明
int getMax(int, int);
void main() {
int t=getMax(12, 21);
printf("%dn", t);
getchar();
}
int getMax(int a, int b) {
if (a > b) {
return a;
}
else {
return b;
}
}
以上就是c语言中函数的声明和定义,希望对大家有所帮助。更多C语言学习指路:C语言教程
本教程操作环境:windows7系统、C11版,DELL G3电脑。