单项选择题
A.消除循环的低效率 B.减少过程调用 C.消除不必要的存储器使用 D.适当添加注释
int len = strlen(s),如果s=hell,则 len =()A.4B.5C.s的首地址D.0
int len = strlen(s),如果s=‛hell‛,则 len =()
A.4 B.5 C.s的首地址 D.0
typedef struct{ int num; char *name; } *vec_ptr; 则在IA32...
typedef struct{ int num; char *name; } *vec_ptr; 则在IA32机器上,sizeof(vec_ptr) =()
A.4 B.8 C.12 D.16
typedef struct{ int num; char *name; } vec_rec; 则在IA32机...
typedef struct{ int num; char *name; } vec_rec; 则在IA32机器上,sizeof(vec_rec) = ()