首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include<stdio.h> main() { char*s={"ABC"}; do { printf("%d",*s%10);s++; } while(*s);
有以下程序: #include<stdio.h> main() { char*s={"ABC"}; do { printf("%d",*s%10);s++; } while(*s);
admin
2013-10-14
24
问题
有以下程序:
#include<stdio.h>
main()
{ char*s={"ABC"};
do
{ printf("%d",*s%10);s++;
} while(*s);
}
注意:字母A的ASCII码值为65。程序运行后的输出结果是( )。【09年3月】
选项
A、5670
B、656667
C、567
D、ABC
答案
C
解析
本题考查循环语句、%运算符以及字符串的指针操作。do-while循环的意思是打印出ABC三个ASCII值整除10的余数,三者ASCII值分别为65、66、67。
转载请注明原文地址:https://kaotiyun.com/show/YMJp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
有以下程序 #include <stdio.h> main() { int y=9; for( ; y>0; y--) if(y%3==0) printf("%d",--y); } 程序的运行结果是
可在C程序中用作用户标识符的一组标识符是
下列叙述中,不符合良好程序设计风格要求的是
下列程序的输出结果是【】。#include<stdio.h>voidfun(intx){if(x/2>0)fun(x/2);printf("%d",x);}main()
下列程序舶输出结果是【 】。#include<stdio.h>main(){inta[5]={2,4,6,8,10},*p;p=a;p++;printf("%d",*p);}
有下列程序: #include <stdio.h> main() { FILE *fp; int a[10]={1,2,3},i,n; fp=fopen("d1.dat","w"); for(i
有下列程序:#include<stdio.h>#include"string.h"typedefstruct{charname[9];charsex;floatscore[2];}STU;voidf(STU
有下列程序: #include <stdio.h> void fun(int * s,int n1,int n2) { int i,j,t; i=n1;j=n2; while(i<j){t=s[
随机试题
Leadingdoctorstodayweighinonthedebateoverthegovernment’sroleinpromotingpublichealthbydemandingthatministersi
环境与资源保护法的公众参与原则中,公众参与的内容不包括【】
引进技术的方式多种多样,包括_________、_________、_________、_________、_________、_________。
Whenwereachedthestation,thetrainhadnotarrivedyet;sowe______.
男性,46岁,尿毒症病史3年,透析治疗。查体:血压170/100mmHg,脉搏82/min。引起肾性少尿的病因包括
血钙高见于
城市用地选择,还需要考虑建设地区的外部环境的技术经济条件,主要有()。
坚持和发展中国特色社会主义的必由之路是:
在软件工程中,高质量的文档是______、一致性和无二义性的。
Advertisements:Intoday’sworld,youmakeastatementaboutthepersonyouarebythecaryouown.ThemessageoftheSKXMach-
最新回复
(
0
)