【单选题】有以下程序 #include void exch(int t[]) { t[0]=t[5]; } main( ) { int x[10]={1,2,3,4,5,6,7,8,9,10}, i=0; while(i<=4) { exch(&x[i]); i++; } for (i=0; i<5; i++) printf("%d ", x[i]); printf(" \n"); } 程序运...
【单选题】基极阶梯信号中, “串联电阻”的作用是( )
【单选题】有以下程序: #include int f( int x , int y) { return((y - x)*x) ; } main() { int a = 3 , b = 4 , c = 5 , d ; d = f(f(a , b) , f(a , c)) ; printf("%d\n" , d) ; } 程序运行后的输出结果是 ( ) 。
【单选题】有以下程序: #include int f(int x) ; main() { int n=1 , m ; m=f(f(f(n))) ; printf("%d\n" , m) ; } int f(int x) { return x*2 ; }
【单选题】为了便于管理,每本图书都有一个ISBN号,即国际标准书号。自2007年1月1日起,将定长10位的书号扩至( )
【单选题】有以下程序 #include double f (double x); main() { double a=0; int i; for ( i=0; i<30; i+=10 ) a +=f( (double)i ); printf ("%3.0f\n", a); } double f (double x) { return x*x+1; } 程序运行后的输出结果是( ...
【单选题】【2014年9月2】1. 有以下程序: #include main() { if('\0'==0)putchar('1'); if('0'==0)putchar('2'); if('a'=='b')putchar('3'); } 程序运行后的输出结果是【 】
【单选题】有以下程序 #include main() { int a[3][4]={ 1,3,5,7,9,11,13,15,17,19,21,23}, (*p)[4]=a,i,j,k=0; for( i=0; i<3; i++ ) for( j=0; j<2; j++ ) k=k+*(*(p+i)+j); printf("%d\n", k ); } 程序运行后的输出结果是
【多选题】下列属于智能传感器的功能的选项包括?
D.
具有双向通信功能,能直接与微处理器或单片机通信
【单选题】有以下程序 #include int funa( int a, intB){ return a+b; } int funb( int a, intB){ return a-b; } int sss( int (*t)(), int x, int y ) { return( (*t)(x,y) ); } main() { int x; x=sss( funa, 9,3 ); x...