以下程序的输出结果是( )。#include <std

以下程序的输出结果是(    )。

#include <stdio.h>
void prt (int  *x, int  *y, int  *z)
{printf("%d,%d,%d\n",++*x,++*y,*(z++));}
main()
{int a=10,b=40,c=20;
prt (&a,&b,&c);
prt (&a,&b,&c);}
答案
B

题目信息

题号:3330
题型:单选题
难度:普通