058.指针-野指针

#include <iostream>
using namespace std;
int main()
{
    //野指针
    //在程序中避免出现野指针
    int* p = (int*)0x1100;
    cout << *p << endl;//报错
    system("pause");
    return 0;
}

 

posted @ 2021-09-04 14:31  梦之心  阅读(30)  评论(0编辑  收藏  举报