单项选择题

有以下程序:
#include <stdio.h>
#include <string.h>
main()
char a[]='a','b','c','d','e','f','g','h','\0'; int i,j;
i=sizeof(

A.; j=strlen(a);
&nb
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序: #include <stdio.h> void fun(int a,int b,int c) a=456,b=567,c=678; main() int x=10,y=20,z=30; fun(x,y,z); printf( %d,%d,%d n ,x,y,z); 此程序的输出结果是( )。
A.30,20,10
B.10,20,30
C.456,567,678
D.678,567,456
单项选择题
对表达式for(表达式1;;表达式3)可理解为( )。
A.for(表达式1;0;表达式3)
B.for(表达式1;1;表达式3)
C.for(表达式1;表达式1;表达式3)
D.for(表达式1;表达式3;表达式3)
相关试题
  • 以下程序的功能是:删去一维数组中所有相同...
  • 以下程序的输出结果是 【18】 。 #in...
  • 下面程序的功能是输出数组s中最大元素的下...
  • 下面程序的运行结果是 【17】 。 #in...
  • 下面函数要求计算两个整数x,y之和,并通过...