有程序:CHARACTER*6SS=‘ABCDEF’CALLSS(S)ENDSUBROUTINESS(S1)CHARACTERS1*3WRITE(*,*)S1END此程序执行后的输出结果为:()A、ABCB、BCDC、CDED、DEF

有程序:CHARACTER*6SS=‘ABCDEF’CALLSS(S)ENDSUBROUTINESS(S1)CHARACTERS1*3WRITE(*,*)S1END此程序执行后的输出结果为:()

  • A、ABC
  • B、BCD
  • C、CDE
  • D、DEF

相关考题:

在执行以下程序时,如果从键盘上输入ABCdef,则输出为______。include main(){char 在执行以下程序时,如果从键盘上输入ABCdef<回车>,则输出为______。#include <stdio.h>main (){ char ch; while ((ch=getchar())!="\n") { if (ch>='A' ch<='B')ch=ch+32; else if (ch>='a' ch<='z')ch=ch-32; printf("%c",ch); } printf("\n");}A.ABCdefB.abcDEFC.abcD.DEF

以下C程序段的输出结果是(30)。 include void abc(char *str){ int a, b; 以下C程序段的输出结果是(30)。 #include <stdio. h> void abc(char *str){ int a, b; for(a=b=0;str[a]!='\O';a++)if(str[a]!='c') str[b++]=str[a]; str[b]='\O'; } void main(){ char str[]="abcdef"; abc(str); printf("str[]=%s",str); }A.str[]=aB.str[]=abC.str[]=abdefD.str[]=abcdef

已知char**S,下面正确的语句是( )。A.s="ABCDEF";B.*s= "ABCDEF";C.**s="ABCDEF";D.*s='A';

有以下程序段 main() { char a[7]="abcdef"; charb[4]="ABC"; strcpy(a,b) ; printf("%c",a[5]); } 程序段运行后的输出结果是( )A.aB.\0C.eD.f

请读程序:includeincludemain(){char *s1="AbCdEf",*s2="aB"; s1++;s2++; 请读程序: #include<stdio.h> #include<string.h> main() { char *s1="AbCdEf",*s2="aB"; s1++;s2++; printf("%d\n",strcmp(s1,s2)); } 上面程序的输出结果是______。A.正数B.负数C.零D.不确定的值

以下程序的输出结果是main(){ char s[]="abcdef"; s[3]=’\0’; printf("%s\n",s);}

有以下程序程序运行后的输出结果是( )A.AbCdEfB.ABCDEFC.aBcDeFD.abcdef

下面程序的输出结果是。 Private Sub Commandl_Click ch$=“ABCDEF” proc ch:Print ch End Sub Private Sub proc(ch As Stnng) s=“” For k=Len(ch) TO 1 Step -1 s=sMid(ch,k,1) Next k ch=s End Sub A.ABCDEF B.FEDCBA C.A D.F

有以下程序#includestdio.hmain(){char b,c;int i;b=‘a’;c=‘A’;for(i=0;i6;i++){if(i%2) putchar(i+b);else putehar(i+c);}printf(“\n”);}程序运行后的输出结果是A.ABCDEFB.AbCdEfC.aBeDeFD.abcdef

若输入“abcdef”、“abdef”,以下程序的输出结果为( )#includeA)1B)0C)’abcdeff’D)’abdef’

有以下程序#includemain(){ char b,c; int i;b=a; c=A;for(i=0;i6;i++){ if(i%2) putchar(i+b);else putchar(i+c);} printf(\n);}程序运行后的输出结果是A.ABCDEFB.AbCdEfC.aBcDeFD.abcdef

在执行以下程序时,如果从键盘上输入:ABCdef,则输出为______。 main() { char ch; while((ch 在执行以下程序时,如果从键盘上输入:ABCdef<回车>,则输出为______。 main() { char ch; while((ch=getchar())!='\n') { if(ch>='A' ch<='Z') ch=ch+32; else if(ch>='a'ch<='2')ch=ch-32; printf("%c",ch); } printf("\n"); }A.ABCdefB.abcDEFC.abcD.DEF

已知char**s,下面正确的语句是( )。A)s="ABCDEF";B)*s="ABCDEF";C)**s="ABCDEF";D)*s='A';

检伤的ABCDEF程序中哪一项是四肢骨折()A、airway及breathingB、circulationC、disabilityD、exposureE、fracture

若有定义:chara[]="abcdef";charb[]="xyz";则以下程序段运行后屏幕输出为() strcpy(a,b); printf("%c",a[2]);A、cB、zC、/0D、d

How close parents are to their children()(有很强的影响) the character of the children.

完善程序输出字符数组c的第二个元素,charc[]=“abcdef”;();

完善程序输出字符数组c,charc[]=“abcdef”;();

有程序:CHARACTER*4A,B*6A=‘ABCD’B=A∥‘EFGH’WRITE(*,*)BEND此程序执行后的输出结果为:()A、ABCDEFGHB、ABCDEFC、ABCDD、EFGH

单选题What does the Character Set Scanner command line utility do?()AReports only on any Unicode character conversions required.BPerforms character set conversions to the new specified character set.CScans on any character set conversion required, then converts the data.DChecks for any character definitions that will fail conversion to the new character set.

单选题有程序:CHARACTER*6SS=‘ABCDEF’CALLSS(S)ENDSUBROUTINESS(S1)CHARACTERS1*3WRITE(*,*)S1END此程序执行后的输出结果为:()AABCBBCDCCDEDDEF

单选题有以下程序:#include#includemain(){ char w[20],a[5][10]={abcdef,ghijkl,mnopq,rstuv,wxyz.}; int i; for(i=0;i5;i++)w[i]=a[i][strlen(a[i])-1]; w[5]='\0'; puts(w);}程序的运行结果是(  )。Aflqv.BagmrwCekpuyDflqvz

单选题若有定义:chara[]="abcdef";charb[]="xyz";则以下程序段运行后屏幕输出为() strcpy(a,b); printf("%c",a[2]);AcBzC/0Dd

单选题有以下程序:#include #include main(){ char w[20], a[5][10] = {abcdef, ghijkl, mnopq, rstuv, wxyz}; int i,j; for(i=0;i5;i++) {  j=0;  while(a[i][j]!='\0')j++;  w[i]=a[i][j-2]; } w[5]='\0'; puts(w);}程序运行后的输出结果是(  )。AagmrwBekpuyCdjotxDflqvz

单选题检伤的ABCDEF程序中哪一项是四肢骨折()Aairway及breathingBcirculationCdisabilityDexposureEfracture

单选题下列程序执行后的输出结果为( )。 CHARACTER*6C C=’1234567890’ CALLSS(C) END SUEROUTINESS(C) CHARACTERC*2 WRITE(*,*)C ENDA123456B12C56D1234567890

填空题How close parents are to their children()(有很强的影响) the character of the children.

单选题程序 character*(*)name name=’apple’ L=len(name) Do10I=1,L 10name(I:I)=char(Ichar(name(I:I))+I print*,name end 程序运行后输出结果为( )AAPPLEBbrspjCjpsrbDapple