C言語エラー:error:expected'=',',',';','asm' or '__attribute__' before'{'token|解決方法


C言語でコードを書くときに問題が発生しました.
error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token|

ネットで皆さんがこの間違いをしたのは多くの原因があります.今回解決したので、記録しておきます.
エラーの原因:
文法が間違っていて、必要な記号がいくつか欠けています.1、ヘッダファイルの前の#があるかどうかをチェックする2、関数を定義するとき()の後に";
エラーコード:
ここでは関数宣言の5行目でセミコロンを忘れました.
#include 
#include 
#include

void money(int year,int loan,float rate)
int main()
{
    int n,loan;
    float rate;
    printf("Input loan:");
    scanf("%d",&loan);
    printf("Input rate:");
    scanf("%f",&rate);
    for(n=5;n<=30;n++)
        money(n,loan,rate);
    return 0;
}
void money(int year,int loan,float rate)
{
    int loan,month;
    month = year*12;
    money = loan*rate(1+pow(1+rate,month))/(pow(1+rate,month)-1);
    printf("Year:%d  Money:%f
"
,year,money) }