未知题型 下列程序段的运行结果是( )。 #include<stdio.h> void main() { char str[]='ABC',*p=str; printf('%d/n',* (p+3)); }A.67B.0C.字符'C'的地址D.字符'C'
未知题型 下列程序的运行结果是( )。 #include<stdio.h> #include<string.h> main() { char*s1='abDuj'; char*s2='ABdUG'; int t; t=strcmp(s1,s2); printf('%d',t); }A.正数B.负数C.零D.不确定的值
未知题型 下列程序的输出结果是( )。 #include <stdio.h> main() { struct st { int y,x,z; }; union { long i; int j; char k; } un; printf('%d,%d/n',sizeof(struct st),sizeof(un)); }A.6, 2B.6, 4C.8, 4D.8, 6