以下程序的输出结果是( ). void fun (float *p1, float *p2, float *s) { *s=*p1+*p2++; } main( ) { float a[2]={1.1,2.2},b[2]={10.0,20.0},*s=a; fun(a,b,s); printf(\%5.2f\\n\,*s); }

时间:2022-11-16 02:35:48

相似题目