首页 试题详情
单选题

#include void main() { char str[]="\"stop!\",he said"; printf(str); } 程序的运行结果是 ( )。

Astop!

B "stop!"

C "stop",he said

D he said*/

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    #include void disp(char *string){ if(*string) { disp( string+1); putchar (*string); }}void main(){ disp(abcdefg);}程序的运行结果是( )。

    答案解析

  • 单选题

    #include void main(){ char str[]= stop! ,he said; printf(str);} 程序的运行结果是 ( )。

    答案解析

  • 单选题

    以下程序输出结果是 。 #include stdio.h void f (); main() {int a; for(a=1;a

    答案解析

  • 单选题

    以下程序运行后的输出结果是( ) 。#include void fun(int x){if(x/5>0) fun(x/5); printf(“%d”,x);}main(){fun(11); printf(“ n”);}

    答案解析

  • 单选题

    有以下程序#includevoid fun(int *x,int i){*x=*(x+i);}void main(){ int a[8]={1, 2, 3, 4, 5, 6, 7, 8},i;fun(a,2);for(i=0; i

    答案解析

热门题库