peterzhu_1 的 站内主页
2006
09-03
09-03
typedef struct tag_PLAYER
{
unsigned char bFlag;
unsigned short sSum;
union
{
unsigned char strName[3];
unsigned long IPlayerId;
unsigne....
Read More >
2006
09-03
09-03
#include<stdio.h>func( int a, int b){ int c;c=a+b;return c;}main(){ int x=6, y=7, z=8, r;r=func( x--,y==,x+y),z--);printf("%d\n",r);}上面程序的输出结果是A) 11 &nb....
Read More >
2006
08-31
08-31
struct struct_A{int a;char b;int c;short d;} struct struct_B{ int a; char b; short c; int d; } struct_A a; struct _B b;问:si....
Read More >
2006
08-30
08-30
函数指针:定义:typedef void (F1)(int p1, int p2) typedef void (*F2)(int p1, int p2) test (int p1, int p2);
F1 * fp1; F2 fp2; F1 fp3;问....
Read More >