たとえば、ヘッダー ファイルexample.h
に次のように記述しました。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
ソースファイルexample.c
には、次のように書きました。
#include "example.h`
これらのライブラリの関数が必要な場合、これらの行を明示的に記述する必要がありますか?
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
ありがとう!