From 60743f8e32719bb5a9616addfa19403dd8579093 Mon Sep 17 00:00:00 2001 From: newde Date: Fri, 6 Mar 2026 22:36:31 -0500 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20=E6=8C=87=E9=92=88/?= =?UTF-8?q?=E6=8C=87=E9=92=88=E5=92=8C=E6=95=B0=E7=BB=84=E7=9A=84=E5=9C=B0?= =?UTF-8?q?=E5=9D=80.cpp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 指针/指针和数组的地址.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/指针/指针和数组的地址.cpp b/指针/指针和数组的地址.cpp index 6f22703..e11420f 100644 --- a/指针/指针和数组的地址.cpp +++ b/指针/指针和数组的地址.cpp @@ -5,15 +5,15 @@ 5 6 int a=10; 7 int b[5]={10,20,30,40,50}; - 8 int * prt_a , * prt_b; + 8 int * ptr_a , * ptr_b; 9 - 10 prt_a=&a; - 11 prt_b=b; - 12 cout << "我是内存地址: "<