填空题

’\13’在内存中占1个字节,"\12"在内存中占______个字节。

【参考答案】

B
<上一题 目录 下一题>
热门 试题

填空题
以下程序运行后的输出结果是 。 #include <stdio.h> main( ) int a[4] [4]= 1,2,3,4, 5’6’7’8,11’12’13’14,15’16’17’18 ; int i=0,j =0,s =0; while(i ++ <4) if(i ==2 [[ i ==4) continue; j=0; do s+ = a[i][j]; j++; while(j<4); pdnff( % d’ n ,s);
填空题
以下程序运行后的输出结果是______。 int f(int a[],int n) if(n>=1)return f(a,n-1)+a[n-1]; else return 0; main() int aa[5]=1,2,3,4,5),s; s=f(aa,5);printf( %d n ,s);
相关试题
  • 设有下列程序: #include<stdio.h> ...
  • 以下程序的输出结果是______。 int...