2017年8月15日
摘要: // win32test.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" void swap_point(int * &a , int * &b){ int temp = *a ; *a = *b; *b = temp ; //销毁调用方指针 //a = NULL ; //b = NULL ; printf("swap_point... 阅读全文
posted @ 2017-08-15 18:31 仰光 阅读(464) 评论(0) 推荐(0)