e***e 发帖数: 38 | 1 【 以下文字转载自 Linux 讨论区 】
【 原文由 exihe 所发表 】
in the c++ head we can use
#include
can anyone tell me where the 'iostream' file is if there is such a file? I can
not find it in /usr/include | a*******s 发帖数: 324 | 2 you can find it at usr/local/lib/g++-include.
Actually, if you don't remember the place where the file is kept,
find pathname -name "filename" -print
For this case,
find /usr -name "iostream.h" -print
can
【在 e***e 的大作中提到】 : 【 以下文字转载自 Linux 讨论区 】 : 【 原文由 exihe 所发表 】 : in the c++ head we can use : #include : can anyone tell me where the 'iostream' file is if there is such a file? I can : not find it in /usr/include
|
|