威盛笔试试题

来源:百度文库 编辑:神马文学网 时间:2024/04/20 08:34:59
主  题:  威盛笔试试题
作  者:  zlkw (C++门诊正在营业!!!)
等  级:
信 誉 值:  100
所属社区:  C/C++ C++ 语言
问题点数:  0
回复次数:  55
发表时间:  2005-10-7 15:27:19
1.三组程序,找出你认为的错误。
(1)
a.c long temp[255];
b.c extern *temp;
(2)a.c long temp[255];
b.c extern temp[256];
(3)a.c long temp[255];
b.c extern temp[];
2.在第一个声明处编译出了奇怪的错误,为什么?
#include
#include “myfun1.h”
#include “myfun2.h”
int myInt1;
int myInt2;
3.printf(“0x%x”, (&0)[1]); 请问打印了什么?
4.汇编,用ax,bx,cx,dx,求1000×1000/30(四舍五入),结果放在ax中。
5.编最优化Bubble(int *pIntArray,int L),要求:交换元素不能用临时变量,如果有序需要最优。
6.用任意一种编程语言写n!的算法。
2003 Asic部分
1.一个四级的Mux,其中第二级信号为关键信号,如何改善timing?
2.一个状态机的题目用Verilog实现。
3.Asic中的design flow的实现。
4.用逻辑门画出D触发器。
5.给出某个一般时序电路的图,有Tsetup,Tdelay,Tck>q还有clock的delay,写出决定最大时钟的因素,同时给出表达式。
6.用C语言实现统计某个cell在某.v文件调用的次数。
7.Cache的主要部分。
2003 EE笔试题目
1.写出电流公式。
2.写出平板电容公式。
3.电阻R和电容C串联,输入电压为R和C之间的电压,输出电压分别为C上电压和R上电压,要求绘制这两种电路输入电压的频谱,判断这两种电路何为高通滤波器,何为低通滤波器。当RC<4.给出时域信号,求其直流分量。
5.给出一时域信号,要求写出频率分量,并写出其傅立叶变换级数。当波形经过低通滤波器滤掉高次谐波而只保留一次谐波时,画出滤波后的输出波形。
6.有一时域信号S=V0sin(2pif0t)+V1cos(2pif1t)+V2sin(2pif3t+90),写出当其通过低通、带通、高通滤波器后的信号表示方式。
7.给出一差分电路,告诉其输出电压Y+和Y,求共模分量和差模分量。
8.一电源和一段传输线相连(长度为L,传输时间为T),画出终端处波形,考虑传输线无损耗。给出电源电压波形图,要求绘制终端波形图。
9.求锁相环的输出频率,给了一个锁相环的结构图。
10.给出一个堆栈的结构,求中断后显示结果,主要是考堆栈压入返回地址存放在低端地址还是高端。
2003 Graphic笔试题目
1.问答题
(1)texture mapping是什么?为什么要用filter?
(2)用float和int表示一个数,比如2,说明优点和缺点。
(3)在MPEG哪部分可以加速硬件?
(4)解释cubic和B-spline的差别,写出各自函数。
(5)写出几个Win API中的OpenGL函数。
(6)说出固定小数表示和浮点小数表示的优缺点。
(7)说出显卡可以优化哪些MPEG中的计算?
(8)说出Bezier和B-Spline曲线的区别。
2.用最简单的方法判断一个数是否是2的指数次幂。
3.S23E8和S10E5两种浮点数表示方法分析,表示0.25写一个类S10E5,实现从S23E8转换。
4.用模版的方式实现三个量取最大值。
5.题目告诉你IEEE 16和32浮点数表示的规范,要求将0.25分别用IEEE 16和32表示并写一个C++函数将输入的IEEE 16表示转化为IEEE 32的表示。
6.用C语言写一个函数f(x) x * 0.5要求只能用整数操作。
2003 Software Engineer笔试题
1. Describe x86 PC’s architecture in a diagram cpu,core chipset, Cache,DRAM, IO-subsystem, IO-Bus
2. SWI instruction is often called a “supervisor call”, describe the actions in detail
* Save the address of the instruction after the SWI in rl4_svc.
* Save the CPSR in SPSR_svc.
* Enter supervisor mode and disable IRQs.
* Set the PC to 08 and begin executing the instruction there.
3.
* What is PIO operation? advantage and disadvantage?
* DMA operation? advantage and disadvantage?
* Scatter/Gather DMA engine? how does it operate?
4. MP3 decoder related. (a flow chart of decoding is presented)
* advantages of Huffman encoding?
* why the aliasing reduction is necessary?
* analytical expression in mathematics of the IMDCT?
* which block in the flow chart is suitable for the software implementation and which for the hardware? why?
5. Assembly codes -> C language (about 15 lines).
6. Graduation thesis description.
回复人: xiaocai0001(萧筱雨) ( ) 信誉:100  2005-10-7 15:28:24  得分: 0
晕~~
这么长~
Top
回复人: xiaocai0001(萧筱雨) ( ) 信誉:100  2005-10-7 15:30:12  得分: 0
大多不会~
再晕~
Top
回复人: zlkw(C++门诊正在营业!!!) ( ) 信誉:100  2005-10-7 15:31:50  得分: 0
呵呵,别急,再发一个公司的考题!
软件笔试题
1. How do you code an infinite loop in C?
2. Volatile:
(1)What does the keyword volatile mean? Give an example
(2)Can a parameter be both const and volatile? Give an example
(3)Can a pointer be volatile? Give an example
3. What are the values of a, b, and c after the following instructions:
int a=5, b=7, c;
c = a+++b;
4. What do the following declarations mean?
(1)const int a;
(2)int const a;
(3)const int *a;
(4)int * const a;
(5)int const * a const;
5. Which of the following statements describe the use of the keyword static?
(1)Within the body of a function: A static variable maintains its value between function revocations
(2)Within a module: A static variable is accessible by all functions within that module
(3)Within a module: A static function can only be called by other functions within that module
6. Embedded systems always require the user to manipulate bits in registers  or variables. Given an integer variable a, write two code fragments.
The first should set bit 5 of a. The second shnuld clear bit 5 of a. In both cases, the remaining bits should be unmodified.
7. What does the following function return?
char foo(void)
{
unsigned int a = 6;
iht b = -20;
char c;
(a+b > 6) ? (c=1): (c=0);
return c;
}
8. What will be the output of the following C code?
main()
{
int k, num= 30;
k =(num > 5 ? (num <=10 ? 100:200): 500);
printf(“%d”, k);
}
9. What will the following C code do?
int *ptr;
ptr =(int *)Ox67a9;
*ptr = Oxaa55;
10. What will be the output of the follow C code?
#define product(x) (x*x)
main()
{
int i = 3, j, k;
j = product(i++);
k = product(++i);
printf(“%d %d”,j,k);
}
11. Simplify the following Boolean expression
!((i ==12) || (j > 15))
12. How many flip-flop circuits are needed to divide by 16?
13. Provides 3 properties that make an OS, a RTOS?
14. What is pre-emption?
15. Assume the BC register value is 8538H, and the DE register value is 62A5H.Find the value of register BC after the following assembly operations:
MOV A,C
SUB E
MOV C,A
MOV A,B
SBB D
MOV B,A
16. In the Assembly code shown below
LOOP: MVI C,78H
DCR C
JNZ LOOP
HLT
How many times is the DCR C Operation executed?
17. Describe the most efficient way (in term of execution time and code size) to divide a number by 4 in assembly language
18. what value is stored in m in the following assembly language code fragment if n=7?
LDAA #n
LABEL1: CMPA #5
BHI L3
BEQ L2
DECA
BRA L1
LABEL2: CLRA
LABEL3: STAA #m
19. What is the state of a process if a resource is not available?
#define a 365*24*60*60
20. Using the #define statement, how would you declare a manifest constant that returns the number of seconds in a year? Disregard leap years in your answer.
21. Interrupts are an important part of embedded systems. Consequently, many compiler vendors offer an extension to standard C to support interrupts. Typically, the keyword is __interrupt. The following routine (ISR). Point out problems in the code.
__interrupt double compute_area (double radius)
{
double area = PI * radius * radius;
printf(“\nArea = %f”, area);
return area;
}
Top
回复人: zlkw(C++门诊正在营业!!!) ( ) 信誉:100  2005-10-7 15:35:59  得分: 0
联想笔试题
1.设计函数 int atoi(char *s)。
2.int i=(j=4,k=8,l=16,m=32); printf(“%d”, i); 输出是多少?
3.解释局部变量、全局变量和静态变量的含义。
4.解释堆和栈的区别。
5.论述含参数的宏与函数的优缺点。
普天C++笔试题
1.实现双向链表删除一个节点P,在节点P后插入一个节点,写出这两个函数。
2.写一个函数,将其中的\t都转换成4个空格。
3.Windows程序的入口是哪里?写出Windows消息机制的流程。
4.如何定义和实现一个类的成员函数为回调函数?
5.C++里面是不是所有的动作都是main()引起的?如果不是,请举例。
6.C++里面如何声明const void f(void)函数为C程序中的库函数?
7.下列哪两个是等同的
int b;
A const int* a = &b;
B const* int a = &b;
C const int* const a = &b;
D int const* const a = &b;
8.内联函数在编译时是否做参数类型检查?
void g(base & b){
b.play;
}
void main(){
son s;
g(s);
return;
}
华为笔试题
1.请你分别画出OSI的七层网络结构图和TCP/IP的五层结构图。
2.请你详细地解释一下IP协议的定义,在哪个层上面?主要有什么作用?TCP与UDP呢?
3.请问交换机和路由器各自的实现原理是什么?分别在哪个层次上面实现的?
4.请问C++的类和C里面的struct有什么区别?
5.请讲一讲析构函数和虚函数的用法和作用。
6.全局变量和局部变量有什么区别?是怎么实现的?操作系统和编译器是怎么知道的?
7.8086是多少位的系统?在数据总线上是怎么实现的?
Sony笔试题
1.完成下列程序
*
*.*.
*..*..*..
*...*...*...*...
*....*....*....*....*....
*.....*.....*.....*.....*.....*.....
*......*......*......*......*......*......*......
*.......*.......*.......*.......*.......*.......*.......*.......
#include
#define N 8
int main()
{
int i;
int j;
int k;
---------------------------------------------------------
| |
| |
| |
---------------------------------------------------------
return 0;
}
2.完成程序,实现对数组的降序排序
#include
void sort( );
int main()
{
int array[]={45,56,76,234,1,34,23,2,3}; //数字任//意给出
sort( );
return 0;
}
void sort( )
{
____________________________________
| |
| |
|-----------------------------------------------------|
}
3.费波那其数列,1,1,2,3,5……编写程序求第十项。可以用递归,也可以用其他方法,但要说明你选择的理由。
#include
int Pheponatch(int);
int main()
{
printf("The 10th is %d",Pheponatch(10));
return 0;
}
int Pheponatch(int N)
{
--------------------------------
| |
| |
--------------------------------
}
4.下列程序运行时会崩溃,请找出错误并改正,并且说明原因。
#include
#include
typedef struct{
TNode* left;
TNode* right;
int value;
} TNode;
TNode* root=NULL;
void append(int N);
int main()
{
append(63);
append(45);
append(32);
append(77);
append(96);
append(21);
append(17); // Again, 数字任意给出
}
void append(int N)
{
TNode* NewNode=(TNode *)malloc(sizeof(TNode));
NewNode->value=N;
if(root==NULL)
{
root=NewNode;
return;
}
else
{
TNode* temp;
temp=root;
while((N>=temp.value && temp.left!=NULL) || (N))
{
while(N>=temp.value && temp.left!=NULL)
temp=temp.left;
while(Ntemp=temp.right;
}
if(N>=temp.value)
temp.left=NewNode;
else
temp.right=NewNode;
return;
}
}
嘿嘿!!发个够,大家好好看看大公司的要求标准!
Top
回复人: zlkw(C++门诊正在营业!!!) ( ) 信誉:100  2005-10-7 15:42:24  得分: 0
MSRA Interview Written Exam(December 2003,Time:2.5 Hours)
1写出下列算法的时间复杂度。
(1)冒泡排序;
(2)选择排序;
(3)插入排序;
(4)快速排序;
(5)堆排序;
(6)归并排序;
2写出下列程序在X86上的运行结果。
struct mybitfields
{
unsigned short a : 4;
unsigned short b : 5;
unsigned short c : 7;
}test
void main(void)
{
int i;
test.a=2;
test.b=3;
test.c=0;
i=*((short *)&test);
printf("%d\n",i);
}
3写出下列程序的运行结果。
unsigned int i=3;
cout<4写出下列程序所有可能的运行结果。
int a;
int b;
int c;
void F1()
{
b=a*2;
a=b;
}
void F2()
{
c=a+1;
a=c;
}
main()
{
a=5;
//Start F1,F2 in parallel
F1(); F2();
printf("a=%d\n",a);
}
5考察了一个CharPrev()函数的作用。
6对 16 Bits colors的处理,要求:
(1)Byte转换为RGB时,保留高5、6bits;
(2)RGB转换为Byte时,第2、3位置零。
7一个链表的操作,注意代码的健壮和安全性。要求:
(1)增加一个元素;
(2)获得头元素;
(3)弹出头元素(获得值并删除)。
8一个给定的数值由左边开始升位到右边第N位,如
0010<<1 == 0100
或者
0001 0011<<4 == 0011 0000
请用C或者C++或者其他X86上能运行的程序实现。
附加题(只有在完成以上题目后,才获准回答)
In C++, what does "explicit" mean? what does "protected" mean?
Top
回复人: JohnTitor(努力学习) ( ) 信誉:100  2005-10-7 15:47:42  得分: 0
mark
Top
回复人: SammyLan(没有窍门,只有努力.LOVE 33 4 Ever) ( ) 信誉:96  2005-10-7 16:55:12  得分: 0
表示关注
(=_=)
Top
回复人: xiaocai0001(萧筱雨) ( ) 信誉:100  2005-10-7 16:59:32  得分: 0
1. How do you code an infinite loop in C?
-------------------------------
for(;;);
2. Volatile:
(1)What does the keyword volatile mean? Give an example
(2)Can a parameter be both const and volatile? Give an example
(3)Can a pointer be volatile? Give an example
------------------------------
(2) Yes
(3) ?
Top
回复人: huoming(你好) ( ) 信誉:100  2005-10-7 18:28:04  得分: 0
自己离进公司的距离还好远..........
Top
回复人: peipeiguo(佩佩郭) ( ) 信誉:100  2005-10-7 18:34:32  得分: 0
不错,马上就要找工作了,这些公司都是牛公司呀,呵呵,有用,谢谢
Top
回复人: tb01412(tb) ( ) 信誉:100  2005-10-7 19:50:22  得分: 0
这样出面试题的公司纯属变态行为!!!!
首先说一下关于第一题:
(1)a.c long temp[255];
b.c extern *temp;
(2)a.c long temp[255];
b.c extern temp[256];
(3)a.c long temp[255];
b.c extern temp[];
只有变态的程序员才会用这三种方来引用外部变量!!!!!!!!!
第二题:
#include
#include “myfun1.h”
#include “myfun2.h”
int myInt1;
int myInt2;
如果编译出了错,然后找到错误的行,看一下错误提示,然后改一下不就行了吗???编程最重要的是解决问题的方法,而不是去做些无聊的事情!!!!!!!!
第三题:
printf(“0x%x”, (&0)[1]);
如果那个自认为是高手的人写出这样的程序,那个人会被后来维护程序的人操祖宗的!!!现在重要的是团队合作,不是一些莫名其妙的自认为高手的程序,人家写内核的人不牛吗?我还没有在LINUX内核中看到如此的代码!!!!!!
第四五六题,终于看到了这个公司不变态的行为了,直到看到这里我才相信公司是要招人才的
Top
回复人: tb01412(tb) ( ) 信誉:100  2005-10-7 20:08:49  得分: 0
再谈一下威盛公司的另一部分:
2003 Software Engineer笔试题
1.相当于要你描述一下对x86芯片的了解,一般说来做嵌入式或操作系统的人才会去了解芯片结构
2.相当于让你描述软中断(SWI)的实现,如果你对LINUX内核方面有所研究的话,就没啥问题的
3.解释IO和DMA传输方式
4.MP3的编解码
以后的就不用说了
上面的面试题实际是考察你有没有底层开发经验,如果有的话,就没啥子问题的
Top
回复人: sankt(黄景天) ( ) 信誉:100  2005-10-7 21:06:56  得分: 0
up
Top
回复人: xiaochongvip(我是外貌与智慧并重,英雄和侠义的化身) ( ) 信誉:100  2005-10-7 21:13:20  得分: 0
up
Top
回复人: steel007(小宝)(工作在windows和linux平台上) ( ) 信誉:105  2005-10-7 21:55:30  得分: 0
果然是搞hardware的阿~不服不行~
Top
回复人: js222(静如流水) ( ) 信誉:100  2005-10-7 22:52:31  得分: 0
交换元素不使用临时变量?。。。怎么作?
Top
回复人: alickguo(靠键盘活着) ( ) 信誉:100  2005-10-8 0:06:55  得分: 0
数学公式:
b = [(b+c)+(b-c)]/2
c = -[(b-c)-(b+c)]/2
int main ()
{
int b=3,c=4;
printf("\r\nb=%d ;c=%d ",b,c);
b=c+b;          /* c+b */
c=c-(b-c);      /* c-b */
b  = ((b+c)/2);      /*==c*/
c  = (-(c-b));
printf("\r\nb=%d ;c=%d ",b,c);
printf("\r\n");
return 0;
}
Top
回复人: alickguo(靠键盘活着) ( ) 信誉:100  2005-10-8 0:11:18  得分: 0
printf("0x%x", (&0)[1]);
^^^^^^^^^^^^^^^^
#61485 这个是什么?
Top
回复人: AntonlioX(做人要厚道) ( ) 信誉:100  2005-10-8 0:42:57  得分: 0
mark
Top
回复人: Snow_Ice11111(雪上加冰) ( ) 信誉:100  2005-10-8 0:43:07  得分: 0
交换元素不使用临时变量?。。。怎么作?
--------------------------------
楼上朋友,不用这么复杂。
b+=c;
c=b-c;
b-=c;
三次加法运算就交换完了,你的用了不知道多少次加法运算不说,还用了两次乘法,效率太低。
Top
回复人: Snow_Ice11111(雪上加冰) ( ) 信誉:100  2005-10-8 1:25:42  得分: 0
完蛋了,以第一组题目为例,题1完全不懂,尚可说自己是基本功太差;
题2呢,前三行包含了三个头文件,后两行声明了两个全局的int变量,整个程序除了没有主程序体main()外完全没有问题啊,怎么会“在第一个声明处编译出了奇怪的错误,为什么?”?我还想问出题的高人哪来这么多“为什么”,还指明是第一个声明呢?靠!!难道是myfun1.h或myfun2.h头文件中已经把myInt1定义为其它东东的名称,如类名或函数名,造成重复定义?!
题3吗,更是无厘头!誰见过“printf(“0x%x”, (&0)[1]); ”这样的语句,知道的朋友请指点一下迷津,先谢了!后面的题目中又出现了
“5.给出某个一般时序电路的图,有Tsetup,Tdelay,Tck>q还有clock的delay,写出决定最大时钟的因素,同时给出表达式。”
“7.给出一差分电路,告诉其输出电压Y+和Y,求共模分量和差模分量。”
“6.用C语言写一个函数f(x) x * 0.5要求只能用整数操作。”
怎么老有“”这样的东东?我再靠!!!
为求答案,我把printf(“0x%x”, (&0)[1]); 这段代码在我的机器上跑了下,结果程序没print出什么,编译器提出错误一大堆!我还想再靠一次那个BT想出此类题目的人,可惜靠不动了,后面的人继续......
Top
回复人: Snow_Ice11111(雪上加冰) ( ) 信誉:100  2005-10-8 1:37:44  得分: 0
看来看去,还是联想、Sony和MSRA出的题厚道些。
最后感谢楼主把这些题目贴给大家看,辛苦了!!致敬!!!
Top
回复人: zhouhuaikun(永追不舍) ( ) 信誉:100  2005-10-8 6:23:11  得分: 0
mark
Top
回复人: ningzhiyu(凝滞雨) ( ) 信誉:100  2005-10-8 8:53:28  得分: 0
mark
Top
回复人: clasj(我蛮怀) ( ) 信誉:98  2005-10-8 9:02:40  得分: 0
吓人~~~
Top
回复人: xiaocai0001(萧筱雨) ( ) 信誉:100  2005-10-8 9:08:44  得分: 0

----------
这个我估计是论坛的事, 有时候在论坛中发一些字符会被替换掉的.
Top
回复人: bisc_sunny(总是当时携手处,游遍芳丛) ( ) 信誉:100  2005-10-8 9:33:46  得分: 0
mark
Top
回复人: emp(Thinking) ( ) 信誉:100  2005-10-8 9:40:57  得分: 0
做个记号
Top
回复人: pyrophile(写代码就像打太极) ( ) 信誉:100  2005-10-8 9:45:22  得分: 0

Top
回复人: Benkid(菁地夫) ( ) 信誉:100  2005-10-8 10:28:12  得分: 0
up
Top
回复人: qjwxsd(零) ( ) 信誉:100  2005-10-8 13:04:49  得分: 0
呵呵
Top
回复人: billjoy(虫虫望天) ( ) 信誉:100  2005-10-8 13:32:10  得分: 0
关注!
Top
回复人: cdo(一个坏人) ( ) 信誉:100  2005-10-8 14:43:07  得分: 0
mark
Top
回复人: Salam2001(Upgrading : C++ and Data Structure ...) ( ) 信誉:99  2005-10-8 16:13:31  得分: 0

这是 tilde “ ~” 的 Unicode 代码
顺便 mark 下
Top
回复人: Leon8086(故乡的云·漂浮在人生十字路口) ( ) 信誉:100  2005-10-8 16:33:12  得分: 0
基本上,数电都让狗吃了……
volatile那道题:
volatile是告诉编译器该变量不能被优化吧(就是不能放在寄存器中,比如说因为别的进程或线程可能访问它)?实在不明白这个东西能不能跟const合用,因为const代表告诉编译器,这个东西可以被放进一些只读的区域(比方说GBA的ROM之类)。剩下的第三个问题应当是可以的。
还是Sony和MSRA比较厚道啊,MSRA的题目曾经做过,仗着对RGB还有些了解,做的马马虎虎。
其实MSRA也不算后到:
struct mybitfields
{
unsigned short a : 4;
unsigned short b : 5;
unsigned short c : 7;
}test
这种用法基本上应该不会用了,而这道题的阴险之处在于还要考虑到在X86机器上(Hi-End机),还有符号,绝对无齿阿。
Top
回复人: batistuta8848(左右对称) ( ) 信誉:100  2005-10-8 16:47:39  得分: 0
关注~!
Top
回复人: lengsehuoyan(孤月浪子) ( ) 信誉:97  2005-10-8 20:03:26  得分: 0
呵呵
几乎一点也看不懂
继续学
Top
回复人: year2000bug(江南) ( ) 信誉:100  2005-10-8 20:23:27  得分: 0
关注
Top
回复人: zhu163(当风吹过) ( ) 信誉:98  2005-10-8 20:38:27  得分: 0
关注
Top
回复人: txl_2002(菜鸟) ( ) 信誉:100  2005-10-8 22:53:47  得分: 0
mark
Top
回复人: power77() ( ) 信誉:88  2005-10-8 23:04:11  得分: 0
mark
Top
回复人: Tangxiang(唐翔) ( ) 信誉:100  2005-10-8 23:36:19  得分: 0
基本上做不出来
!·##¥%……%%……—
看来在内功还是太差,一点都不扎实!
Top
回复人: xuelong_zl(点雨点[好想村里的MM们............]) ( ) 信誉:100  2005-10-9 17:20:58  得分: 0
不错的题,因为没有会的.......
Top
回复人: prefish(鱼~) ( ) 信誉:100  2005-10-9 21:13:03  得分: 0
留名关注了
Top
回复人: fujingn188() ( ) 信誉:93  2005-10-9 21:36:01  得分: 0
mark
Top
回复人: xdop(鸿飞处) ( ) 信誉:100  2005-10-11 9:50:47  得分: 0
果然bt
Top
回复人: jack20my(jack20my) ( ) 信誉:100  2005-10-11 10:34:15  得分: 0
学习
Top
回复人: winter77(vv) ( ) 信誉:100  2005-10-11 11:16:29  得分: 0
晕……
毕业才没多久,怎么好多试题看着眼熟,却想不起解决的办法了。
功底差啊~
要做程序员还得回炉啊!
Top
回复人: phoenix_01(诸葛不黑) ( ) 信誉:100  2005-10-11 12:28:36  得分: 0
mark
Top
回复人: CHENGTOM(阿TOM) ( ) 信誉:99  2005-10-11 14:51:48  得分: 0
ding
Top
回复人: MagicYang1225(扬阳) ( ) 信誉:100  2005-10-17 22:18:00  得分: 0
up
Top
回复人: lvyao1011() ( ) 信誉:100  2005-10-17 23:41:00  得分: 0
这个要mark
Top
回复人: jsjboss() ( ) 信誉:100  2005-10-18 00:52:00  得分: 0
学习。。。
Top
回复人: lx6636(水果萝卜) ( ) 信誉:97  2005-10-18 01:01:00  得分: 0
...mark
Top
回复人: ddmor(ddmor) ( ) 信誉:100  2005-10-18 09:35:00  得分: 0
printf("0x%x", (&0)[1]);----外星语 ?!!!!
VC6的编译器都认不出来。
Top