由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] Interview Question
相关主题
typedef请教函数 INIT 怎么能free memory
[合集] more interview questionsdifference between FILE and struct FILE
C++ Template Question请问可以这样定义struct吗?
What is the difference between class and struct?ask a question about struct in C programming
forward declarationtypedef struct的问题
how to initialize this struct.一个简单的C编程问题
为啥有人喜欢把_s结尾的结构typedef成_t结尾的,有讲究么?有段c++代码看不懂
sizeof()的问题请教一个c++ 里functor的问题
相关话题的讨论汇总
话题: int话题: abc话题: question话题: interview话题: eastroad
进入Programming版参与讨论
1 (共1页)
c***d
发帖数: 996
1
☆─────────────────────────────────────☆
eastroad (eastroad) 于 (Tue Sep 11 20:15:03 2007) 提到:
Consider the following declarations:
typedef struct
{
int a;
int b;
int c;
} ABC;
typedef struct
{
int d;
int e;
int f;
ABC *abc;
} DEF;
Given the above declarations, fill in the body of the following two
functions given below:
// The create function should use a single call to malloc
1 (共1页)
进入Programming版参与讨论
相关主题
请教一个c++ 里functor的问题forward declaration
问个编程,系统,网络有关的综合问题。how to initialize this struct.
typedef 的一个问题为啥有人喜欢把_s结尾的结构typedef成_t结尾的,有讲究么?
请教一个rpcgen的问题sizeof()的问题
typedef请教函数 INIT 怎么能free memory
[合集] more interview questionsdifference between FILE and struct FILE
C++ Template Question请问可以这样定义struct吗?
What is the difference between class and struct?ask a question about struct in C programming
相关话题的讨论汇总
话题: int话题: abc话题: question话题: interview话题: eastroad