专题文章
时长:00:00更新时间:2020-11-09 16:03:27
间接修改指针的地址技巧:// test for a pointer.cpp : Defines the entry point for the console application. // #include \stdafx.h\ #include iostream using namespace std; typedef struct { int *p; }Test; int main( ) { int *p; // p[0] = 4; // p[1] = 3; Test test; p =
查看详情