Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Cに.hファイルと.oファイルしかない場合に関数を呼び出すことはできますか?
つまり、example.hファイルとexample.oファイルしかないのに、ファイルがなくexample.c、メインファイルから関数を読み取りたい場合です。
example.h
example.o
example.c
ポインタを使ってそれができることは知っていますが、その方法はよくわかりません。これをどのように達成できるかについての提案はありますか?
#include<object.h>ヘッダーを含め、コンパイル中にオブジェクトファイルへのパスを指定するために使用します。
#include<object.h>
gcc main.c object.o -o main
これで、関数を使用できるようになります。