C++学习笔记之指针
#include<iostream> #include<malloc.h> using namespace std; int main() { int *p = NULL; p = (int*)malloc(sizeof(int)); *p = 4; free(p); printf("%d\n",p); if(p != NULL) { printf("%d\n",*p); } return 0; }
补充:软件开发 , C++ ,
#include<iostream> #include<malloc.h> using namespace std; int main() { int *p = NULL; p = (int*)malloc(sizeof(int)); *p = 4; free(p); printf("%d\n",p); if(p != NULL) { printf("%d\n",*p); } return 0; }
补充:软件开发 , C++ ,
上一个:顺序串算法
下一个:hdu 1045 Fire Net(回溯搜索)