单项选择题
有以下程序:
#include <stdio.h>
main( )
int i,t[ ] [3] = 9,8,7,6,5,4,3,2,1;
for(i=0;i<3;i++) printf("%d ",t[2-i]l-i]);程序执行后的输出结果是( )。
A.7 5 3
B.3 5 7
C.3 6 9
D.7 5 1
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序:#include <stdio.h>void swap(char * x,ehar * y) char t; t= *x; *x: *y; *y=t;main ( ) char *s1 = abc , * s2 = 123 ; swap(s1 ,s2); printf( %s,%s n ,s1 ,s2);程序执行后的输出结果是( )。
A.123,abe
B.abe,123
C.1bc,a23
D.321,cba
点击查看答案&解析
单项选择题
以下不合法的用户标识符是( )。
A.j2_KEY
B.Double
C.4d
D._8
点击查看答案&解析
相关试题
有以下程序: #include <stdio.h> m...
执行以下程序后,test.txt文件的内容是(...
有以下程序: #include <stdio.h> i...
有以下程序:#include <stdio.h>fun(...
有以下程序:#inelude <stdio.h>main...