题目内容

投资者利息收入是中央银行发行债券的主要成本支出;其他成本都比较低。

A. 对
B. 错

查看答案
更多问题

下列程序执行后的输出结果是________。main(){ char arr[2][4];strcpy(arr[0],"you");strcpy(arr[1],"me");printf("%s\n",arr[0]);}

A. you
B. youme
C. you&me
D. me

下面程序的运行结果是:。#include main( ){char string1[]="I have a book";char string2[]={'H','o','w',' ','a','r','e',' ','y','o','u'};printf("%s\n",string1);printf("%s\n",string2);}

下面程序在运行输入:abcdefg (回车),则输出是:。#include main(){char str[100];printf("输入字符串:\n"); scanf("%s",str);inverse(str); printf("轮换后的字符串是:%s\n",str);}inverse(char str[]){char t;int i,j;for(i=0,j=strlen(str); i

编写函数acopy( ),将数组a[]的内容赋值到b[]数组中。(以999做结束标志)#include void acopy(1){int i=0;while (a[i]!=-999){2i++;}b[i]= 3}main( ){ int a[]={1,2,3,4,5,6,7,8,9,10,999};int b[100], i=0;4while (b[i]!=-999) printf("%d",b[i++]);}

答案查题题库