间接修改指针的地址技巧【点击查看详情】
间接修改指针的地址技巧:// 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 =
相关视频/文章