馃煝聽諑铡謤摘崭謧诈盏崭謧斩 4
曰諡斩展 寨湛蘸站斋 乍寨謤铡斩斋斩謮
#include <iostream>
int main() {
int a = 5;
int c = 10;
int* p = &c;
*p = a;
std::cout << a << " " << c << " " << *p;
}
聽
Programming 01
#include <iostream>
int main() {
int a = 5;
int c = 10;
int* p = &c;
*p = a;
std::cout << a << " " << c << " " << *p;
}