标签: gcc g++
我有一个C程序,其中包含<cmath>
<cmath>
不知何故,当我用gcc a.cpp编译它时,它会在#include <cmath>上给出错误,但g++ a.cpp就可以了。
gcc a.cpp
#include <cmath>
g++ a.cpp
为什么?