单项选择题对下述程序的判断中,正确的是( )。 #include<stdio.h> void main() {char *P,s[256]; p=s; while(strcmp(s, the end )) {printf( Input the string: ); gets(s); while(*P) putchar(*p++);}}
单项选择题执行以下程序段的输出结果是( )。 int m=0x12,n=0x12; m=m-n; printf( %X n ,m);