有下列程序:
include<stdi0.h>
voidmain( )
{char*s={"ABC");
do
{printf("%d",*s%10);s++;
}while(*s);
}
注意:字母A的ASCIl码值为65。程序运行后的输出结果是( )。
A.5670
B.656667
C.567
D.ABC
第1题:
在PowerPoint中,若想给“文本框”对象或“文本框占位符”设置动画效果,下列说法正确是()。
A.执行quot格式quot菜单的quot幻灯片设计quot命令,右侧有一个相应的设置窗格
B.执行quot幻灯片反映quot菜单的quot自定义动画quot命令,右侧有一个相应的设置窗格
C.执行quot格式quot菜单的quot幻灯片版式quot命令,右侧有一个相应的设置窗格
D.以上说法全错
第2题:
有下列程序:
#include<stdi0.h>
voidfun(char*s)
{while(*s)
{if(*s%2==(1)printf("%C",*s);
s+十:
}
}
voidmain( )
{chara[]={"good");
fun(a);printf("n");
}
注意:字母a的ASCIl码值为97,程序运行后的输出结果是( )。
A.d
B.go
C.god
D.good
第3题:
有以下程序(注:字符a的ASCII码值为97) #include <stdio.h> void main() { char *s={"abc"}; do { printf("%d",*s%10); ++s; }while(*s); } 程序运行后的结果是()。
A.999
B.987
C.789
D.以上结果都不正确
第4题:
有以下程序 #inc1ude<stdio.h> main() { char*s={"ABC"}; do { printf("%d",*s%10); s++; } while(*s); } 注意字母A的ASCII码值为65。程序运行后的输出结果是______。
A.5670
B.656667
C.567
D.ABC
第5题:
有下列程序: #include<stdi0.h> voidfun(char*s) {while(*s) {if(*s%2==(1)printf("%C",*s); s+十: } } voidmain( ) {chara[]={"good"); fun(a);printf("n"); } 注意:字母a的ASCIl码值为97,程序运行后的输出结果是( )。
A.d
B.go
C.god
D.good
第6题:
有以下程序注:字符a的ASCII码值为97: #include<stdio.h> void main() {char *s="abc"; do { printf("%d",*s%10); ++s; } while(*s); } 程序运行后的输出结果是()。
A.abc
B.789
C.7890
D.979899