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.
我有一个使用 f2c(Fortran 到 C 转换器)生成的 C 文件,其中包含以下 C 结构:
struct { real rez, pi, st; } const_;
如何const_在不修改 f2c 生成的变量的情况下在另一个 .c 文件中将此变量声明为外部变量?
const_
在另一个文件中。
extern struct { real rez, pi, st; } const_;