摘要: // 指针专题.cpp : 定义控制台应用程序的入口点。//#include "stdio.h"#define Wr(num) printf("%d\n",num)void Fun(int *p){ int num=555; *p=99; p=#}void Fun2(){ int tem=123; int *pt=&tem; Fun(pt); printf("%d,%d\n... 阅读全文
posted @ 2010-09-27 13:39 再快一点 阅读(165) 评论(0) 推荐(0) 编辑