logo - 刷刷题
下载APP
【单选题】

下列程序段的输出結果是()。

#include "stdio.h"

void fun( int *x,int *y){

printf("%d %d ", *x,*y);

*x=3;

*y=4;

}

void main( )

{

int x=1,y=2;

fun(&y, &x);

printf("%d %d", x, y);

}

A.
2 1 4 3
B.
1 2 3 4
C.
1 2 1 2 
D.
2 1 1 2
题目标签:输出程序段
举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三