You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
296 B

2 years ago
#include <bits/stdc++.h>
using namespace std;
int main() {
int x = 101;
int y = 201;
int *p = &x;
int *q = &y;
p = q;
printf("%d %d\n", x, y);
//输出:101 201
printf("%d %d", *p, *q);
//输出201 201
//所以答案:D
return 0;
}