假設:
你有兩個檔案,分別是1.c和2.c,先在main函式在1.c裡,然後列印函式在2.c裡,這時候你想在1.c裡呼叫2.c的東西,那麼就需要用到2.h標頭檔案,下面附上**:
1.c
int main(void)
2.c
#include #include "mulfiletest.h"
void showmigong(int maze[9][9])
else
} printf("\n");
}}
2.h
#ifndef __mulfiletest_h__//如此規則是為了在大專案中防止衝突
#define __mulfiletest_h__
void showmigong(int[9][9]);
#endif
這樣在1.c中include一下2.h
#include #include #include "mulfiletest.h"
即可呼叫2.c裡的方法,是不是so easy!
c 工程內不同檔案的函式呼叫
乙個工程裡只能有乙個main函式,不同檔案的函式之間可以相互呼叫,寫個頭檔案就可以 下面舉個例子介紹 main.cpp include include trytry.h 包含的標頭檔案 using namespace std int hello int main int hello try.cpp ...
乙個js檔案中使用不同的id呼叫不同的方法
在進行js的學習和時間中,遇到了乙個需求是,在乙個js檔案中有許多的操作,而我需要根據不同的id進行不同的操作。最開始我想到的是通過建立不同的js然後在html頁面呼叫不同的js來完成,但是過於笨重並且十分麻煩,於是在思考一種比較方便的方法。於是我想到了document.getelementbyid...
gcc編譯位於不同檔案下的 c檔案。
我在day2檔案下建立了乙個main.c函式,然後乙個add資料夾,乙個sub資料夾。其中add檔案下有add int.c,add float.c,add.h 然後在sub資料夾中有sub int.c,sub float.c,sub.件。include include add.h include s...