[单选题]

下列程序的输出结果是______。 char*fun(char*str,int n) { int i; char*p=str; for(i=0;i<10;i++,str++) *str='a'+i; return++p; } main() { char a[10]; printf("%s/n",fun(a,10)); }

A.ABCDEFGHIJ

B.abcdefghij

C.bcdefghij

D.不确定的值

参考答案与解析:

相关试题

下列程序输出的结果是( )。 #include fun1(char a,char

[单选题]下列程序输出的结果是( )。 include fun1(char a,char b) {char c;c=a;a=b;b=c;} fun2下列程序输出的结果是( )。 #include<stdio.h> fun1(char a,char b) {char c;c=a;a=b;b=c;} fun2 (char*a,char b) {char c;c=*a;*a=b;b=c;} fun3(char*a,char*b) {char c;c=*a;*a=*b;*b=c;} void main() { c

  • 查看答案
  • 有以下程序的输出结果是( ) char fun(char x , char y)

    [单选题]有以下程序的输出结果是( )char fun(char x , char y){ if(xmain( ){ int a=’9’,b=’8’,c=’7’;printf(“%c/n”,fun(fun(a,b),fun(b,c))); }A.函数调用出错B.8C.9D.7

  • 查看答案
  • 下列程序的输出结果是#includevoid main( ){char*str=

    [单选题]下列程序的输出结果是includevoid main( ){char*str="12123434";int xl=0,x2=0,x3=下列程序的输出结果是 #include<iostream.h> void main( ) {char*str="12123434"; int xl=0,x2=0,x3=0,x4=0,i; for(i=0;str[i]!='/0';i++) switch(str[i]) {case'1':x4++; case'2':x3++; case'3'

  • 查看答案
  • 以下程序片段的输出结果是______。char str[]="abc\n\012

    [单选题]以下程序片段的输出结果是______。 char str[]="abc/n/012///""; printf("%d",strlen(str));A.4B.5C.6D.7

  • 查看答案
  • 下列程序的输出结果是#includevoid main(){char*str="

    [单选题]下列程序的输出结果是includevoid main(){char*str="12123434"; int x1=0,x2=0,x3=下列程序的输出结果是 #include<iostream.h> void main() { char*str="12123434"; int x1=0,x2=0,x3=0,x4=0,i; for(i=0;str[i]!=‘/0’;i++) switch(str[i]) { case'l':x4++; case'2':X3++; case'3':

  • 查看答案
  • 下列程序的输出结果是#includevoid main(){char*str="

    [单选题]下列程序的输出结果是includevoid main(){char*str="12123434";int x1=0,x2=0,x3=0下列程序的输出结果是 #include<iostream.h> void main() {char*str="12123434"; int x1=0,x2=0,x3=0,x4=0,i; for(i=0;str[i]!='/0';i++) switch(str[i]) {case'1':x4++; case'2':X3++; case'3':

  • 查看答案
  • 以下程序的输出结果是()。#includeint fun (char*s){ch

    [单选题]以下程序的输出结果是()。includeint fun (char*s){char *p=s;while (*p!='/0,) p£«£«以下程序的输出结果是( )。 #include<iostream.h> int fun (char*s) { char *p=s; while (*p!='/0,) p++: return (p-s): } void main() { cout<<fun (" ABCDEF ")<<endl: }A.3B.6C.8D.0

  • 查看答案
  • 以下程序的输出结果是______。main(){char str[12]={'s

    [单选题]以下程序的输出结果是______。 main() { char str[12]={'s','t','r','i','n','g'}; printf("%d/n",strlen(str)); }A.6B.7C.11D.12

  • 查看答案
  • 以下程序的输出结果是______。main(){char str[12]={'s

    [单选题]以下程序的输出结果是______。 main() { char str[12]={'s','t','r','i','n','g'}; printf("%d/n",strlen(str)); }A.6B.7C.11D.12

  • 查看答案
  • 下面程序的输出结果是______。main(){char str[10],c='

    [单选题]下面程序的输出结果是______。 main() { char str[10],c='a'; int i=0; for(;i<5;i++) Str[i]=c++; printf("%s",str); }A.abcdeB.aC.不确定D.bcdef

  • 查看答案
  • 下列程序的输出结果是______。char*fun(char*str,int n