填空题
以下程序的执行结果是()
main() {
int a, b, *p = &a, *q = &b;
a = 10;
b = 20;
*p = b;
*q = a;
printf(“a = %d, b = %d\n”, a, b);
【参考答案】
a=20,b=20
点击查看答案
