From d9c243164f7a2de9d7e0db0ddf56d5c0556968a6 Mon Sep 17 00:00:00 2001 From: newde Date: Fri, 6 Mar 2026 22:13:22 -0500 Subject: [PATCH] =?UTF-8?q?=E6=8C=87=E9=92=88=E5=92=8C=E6=95=B0=E7=BB=84?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 0307指针 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 0307指针 diff --git a/0307指针 b/0307指针 new file mode 100644 index 0000000..6f22703 --- /dev/null +++ b/0307指针 @@ -0,0 +1,20 @@ + 1 #include + 2 using namespace std; + 3 + 4 int main(){ + 5 + 6 int a=10; + 7 int b[5]={10,20,30,40,50}; + 8 int * prt_a , * prt_b; + 9 + 10 prt_a=&a; + 11 prt_b=b; + 12 cout << "我是内存地址: "<