广州南沙软件园面试试题
(C++部分)
要求15分钟完成。
1、简述ICQ或OICQ的工作原理。
2、WINDOWS下C++如何申请内存?
3、怎么使用VC++获得一个命令按钮的句柄?
4、JAVA和C++有什么区别?
5、LINUX的常见目录有什么?
6、有什么办法可以让一个程序一直运行并能够处理多个用户的login和logout操作?
7、
typedef struct{
void (*ver)();
int *p1;
}abc;
abc s={f1,&p1}, *s1;
int p1;
void f1(int *a){……}
Please use the pointer s1 reference(call) the function f1 and pass the parameter p1 to the function. The call syntax should not contain f1 and p1.