慕姐4208626
#include<stdio.h>
void aaa(void); /* 声明函数*/
void main()
{
aaa();
}
void aaa(void) /* 定义函数*/
{
}
规范的写法是函数既要有定义,也要有声明