由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - a ANSI C question
相关主题
C++里 variable declaration 有什么用?standard C++ lib.
关于inline function里的static variableHow are parameters passed between ANSI C subroutines?
How to use a function return by reference in C++请问如何判断一个文件内容是UNICODE 还是 ANSI
register variable问一个关于ANSI C中system命令的问题
lambda的一个疑问how to get division and reminder in one operation?
sql 数据是存在哪里 (转载)三个C syntax 弱问题
size不固定的struct怎么定义呀?C++.net 和C++ 有什么不同?
C语言的变量都一定要放在stack上吗?[合集] more interview questions
相关话题的讨论汇总
话题: question话题: ansi话题: variable话题: extern话题: problem
进入Programming版参与讨论
1 (共1页)
j***a
发帖数: 832
1
f1.c
...
TYPE1 Variable_1;
f2.c
...
extern TYPE2 Variable_2;
Question: will there be any problem in the above code?
l***g
发帖数: 1035
2
what problem? no problem.

【在 j***a 的大作中提到】
: f1.c
: ...
: TYPE1 Variable_1;
: f2.c
: ...
: extern TYPE2 Variable_2;
: Question: will there be any problem in the above code?
:

H***a
发帖数: 735
3
extern 定义在*.h里吧
l***g
发帖数: 1035
4
not necessarily. extern only means compiler does not allocate memory, let th
e linker find it somewhere else.
of course for convenience you can put the var in the header as extern, and i
nclude that file for everyone.

【在 H***a 的大作中提到】
: extern 定义在*.h里吧
1 (共1页)
进入Programming版参与讨论
相关主题
[合集] more interview questionslambda的一个疑问
顺便问一个CreateFile问题 (转载)sql 数据是存在哪里 (转载)
请教有关header file的几个问题size不固定的struct怎么定义呀?
C程序编译出现问题[collect2: ld returned 1 exit status]求助,thxC语言的变量都一定要放在stack上吗?
C++里 variable declaration 有什么用?standard C++ lib.
关于inline function里的static variableHow are parameters passed between ANSI C subroutines?
How to use a function return by reference in C++请问如何判断一个文件内容是UNICODE 还是 ANSI
register variable问一个关于ANSI C中system命令的问题
相关话题的讨论汇总
话题: question话题: ansi话题: variable话题: extern话题: problem