#include <iostream>
using namespace std;
int main()
{
//空指针
//1.空指针用于给指针变量进行初始化
int* p = NULL;
//2.空指针不可以进行访问
//0`255之间的内存编号是系统占用,不允许访问
//*p = 1000;//错误
system("pause");
return 0;
}
标签:NULL,int,指针,访问,057,255
来源: https://www.cnblogs.com/ceovs/p/15226529.html