笔果题库
计算机二级C语言程序设计
VIP题库
搜题找答案,就上笔果题库
若有定义:char ch;,当执行以下循环时从键盘输入abcde,将输出*的个数是______。while((ch=getchar())==''e'') printf("*");
搜题找答案,就上笔果题库
有以下程序#include main(){char c1=''1'',c2=''2'';c1=getchar();c2=getchar();putchar(c1);putchar(c2);}当运行时输入:a后,以下叙述正确的是______。
搜题找答案,就上笔果题库
有以下程序#include int f(int x);main(){ int a,b=0;for(a=0;a
搜题找答案,就上笔果题库
有以下程序#include main(){if (''\0'' == 0) putchar(''1'');if (''0'' == 0) putchar(''2'');if (''a'' > ''b'') putchar(''3'');}程序运行后的输出结果是______。
搜题找答案,就上笔果题库
有如下程序#include main(){char a = ''3'', b = ''A'';int i;for (i=0; i
搜题找答案,就上笔果题库
有以下程序#include main(){ char b,c;int i;b=''a'';c=''A'';for(i=0;i
搜题找答案,就上笔果题库
有以下程序#include main(){ int x=35, B; char z=''B'' ;B = (( x ) && ( z
搜题找答案,就上笔果题库
有如下程序#include void convert(char ch){if (ch < ''D'') convert(ch+1);printf("%c", ch);}main(){convert(''A''); printf("\n");}程序运行后的输出结果是______。
搜题找答案,就上笔果题库
有以下程序#include main(){ char c;for(; (c=getchar()) != ''#''; ) putchar(++c);}执行时如输入为:abcdefg## , 则输出结果是______。
搜题找答案,就上笔果题库
有以下程序#include main(){char c1=''A'', c2=''Y'';printf( "%d, %d\n", c1,c2 );}程序的输出结果是______。