低压验电笔检测电压的范围为220~380V。
参考答案:错
有以下程序 void f( int y,int *x) { y=y+*x; *x=*x+y;} main( ) { int x=2,y=4; f(y,&x); printf(“%d %d\n”,x,y);} 执行后输出的结果是【 】。