#includeusing namespace std; int main() { int * p = NULL; cout << p < 指向了0号内存地址,被系统占用了,不能被调用。
#includeusing namespace std; int main() { int * p = NULL; *p = 100; cout << *p < 二、野指针 随机指向的地址
#includeusing namespace std; int main() { int * p = (int *)0x11abc0; *p = 100; cout << *p <
欢迎分享,转载请注明来源:内存溢出
C++空指针和野指针
一、空指针
赞
(0)
打赏
微信扫一扫
支付宝扫一扫
CCF CSP 2021-9-2 非零段划分 C语言100分
上一篇
2022-11-17
多项式加法(5分)
下一篇
2022-11-17
评论列表(0条)