0
這兩個等價或不同(在某種意義上)?鏈接和包含頭文件的區別
myfile1.c
#include <stdio.h>
#include <math.h>
//some code here which uses math library
,通常使用編譯gcc
$gcc myfile1.c
myfile2.c
#include <stdio.h>
//some code here which uses math library
但這個編譯使用FOLL由於聲明
$gcc myfile2.c -lm