A.《五十二病方》
B.《内经》
C.《外科全生集》
D.《山海经》
[单选题]用滑润的“铤”作为检查治疗漏管的探针,首见于()A . 《五十二病方》B . 《内经》C . 《外科全生集》D . 《山海经》
[单选题]若有如下程序: int s[3] [3]={'a','b','C','d','e','f','g','h','i'},*t; main() {t:(int*)malloc(sizeof(int)); sub(t,s); printf("%c/n",*t); } sub(int*p,int b[][3]) {*p=b[2][1]; } 则程序运行后的输出结果是( )。A.dB.eC.hD.b
[单选题]有以下程序: main() { char a[ ]={'a','b','c','d','e','f','g','h','/0'}; int i,j; i=sizeof(a); j=strlen(a); printf("%d,%d/b",i,j); } 程序运行后的输出结果是( )。A.9,9B.8,9C.1,8D.9,8
[单选题]有以下程序 main() {char a[]={'a','b','c','d','e','f','g','h','/0'};int i,j; i=sized(a);j=stden(a); printf(“%d,%d/n”,i,j); } 程序运行后的输出结果是A.9,9B.8,9C.1,8D.9,8
[单选题]有以下程序 main() { char a[]={'a','b','c','d','e','f','g','h','/0'};int i,j; i=sizeof(a);j=strlen(a); printf("%d,%d/b",i,j);} 程序运行后的输出结果是A.9,9B.8,9C.1,8D.9,8
[单选题]有以下程序includemain(){charp[]={'a','b','c'},q[10]={'a','b','c'};printf("%d%d/有以下程序 #include<string.h> main() { charp[]={'a','b','c'},q[10]={'a','b','c'}; printf("%d%d/n",strlen(p),strlen(q));} 以下叙述中正确的是A.在给p和q数组置初值时,系统会自动添加字符串