有以下程序
#include "stdio.h"
f(char *s)
{ char *p=s;
while(*p!=‘\0‘)
p++;
return(p-s);
}
void main()
{ printf("%d\n",f("ABCDEF"));
}
执行后的输出结果是( )。
A3
B6
C8
D0
相关试题
-
有以下程序 #include stdio.h void main() { char s[12]= a book; printf(%.4s,s); } 执行后的输出结果是( )。
-
有以下程序 #include stdio.h void main() { char s[12]= a book; printf(%.4s,s); } 执行后的输出结果是( )。
-
有以下程序 #include void fun(char *s) { while(*s) { if (*s%2==0) printf(%c,*s); s++; } } void main() {
-
有以下程序 #include # include char *fun(char *t) { char *p=t; return(p+strlen(t)/2); } void main() {
-
有以下程序 #include stdio.h void main() { int a=1; char c=‘a‘; float f=2.0; printf(%d\n,(!(a==0),f!=0&&