由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C interview question
相关主题
onsite归来,有一个c的问题不知道怎么回答(EE, CS请进)array of pointers to functions
发一些面世题,C Programming再问道题
一个GOOG的二叉树面试题C++ Q56: map & typedef (C29)
请教一个C/C++问题发几道Google面试题(Phone and Onsite)
回馈本版,贴ms onsite面经一道有关String的面试题
用C写一个拷贝graph的代码,电话面试题又问几个c语言编程的题目
问个编程,系统,网络有关的综合问题。刚刚电面bloomberg,被问到一个没看到过的问题
C++ Q33: typedef (B4_20)c模拟c++的继承和多态
相关话题的讨论汇总
话题: stdcall话题: question话题: interview话题: what话题: myfun
进入JobHunting版参与讨论
1 (共1页)
b****g
发帖数: 625
1
What is this doing?
typedef int (__stdcall *MyFun)(int a, void *b);
h**k
发帖数: 3368
2
定义一个函数指针 MyFun

【在 b****g 的大作中提到】
: What is this doing?
: typedef int (__stdcall *MyFun)(int a, void *b);

b****g
发帖数: 625
3
not exactly
I remember that _stdcall is a Win32 calling conventions which has some
features, but I don't remember what are the features

【在 h**k 的大作中提到】
: 定义一个函数指针 MyFun
h**k
发帖数: 3368
4
VC++里的
The __stdcall calling convention is used to call Win32 API functions. The ca
llee cleans the stack, so the compiler makes vararg functions __cdecl. Funct
ions that use this calling convention require a function prototype.

【在 b****g 的大作中提到】
: not exactly
: I remember that _stdcall is a Win32 calling conventions which has some
: features, but I don't remember what are the features

P***y
发帖数: 2885
5
defined a new functional type name

【在 b****g 的大作中提到】
: What is this doing?
: typedef int (__stdcall *MyFun)(int a, void *b);

1 (共1页)
进入JobHunting版参与讨论
相关主题
c模拟c++的继承和多态回馈本版,贴ms onsite面经
One question about Void pointer (转载)用C写一个拷贝graph的代码,电话面试题
难道我下载到的是盗版CareerCup 150??问个编程,系统,网络有关的综合问题。
一道面试题C++ Q33: typedef (B4_20)
onsite归来,有一个c的问题不知道怎么回答(EE, CS请进)array of pointers to functions
发一些面世题,C Programming再问道题
一个GOOG的二叉树面试题C++ Q56: map & typedef (C29)
请教一个C/C++问题发几道Google面试题(Phone and Onsite)
相关话题的讨论汇总
话题: stdcall话题: question话题: interview话题: what话题: myfun