From d38936ae32b6abafbe15ac2917e3051494dafff9 Mon Sep 17 00:00:00 2001 From: newde Date: Fri, 6 Mar 2026 22:16:44 -0500 Subject: [PATCH] =?UTF-8?q?=E6=8C=87=E9=92=88.cpp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 指针/指针地址.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 指针/指针地址.cpp diff --git a/指针/指针地址.cpp b/指针/指针地址.cpp new file mode 100644 index 0000000..7ffc1c5 --- /dev/null +++ b/指针/指针地址.cpp @@ -0,0 +1,14 @@ + 1 #include + 2 using namespace std; + 3 + 4 int main(){ + 5 + 6 int a=10; + 7 int * prt_a ; + 8 + 9 prt_a=&a; + 10 cout << "我是内存地址: "<