What is “null pointer assignment error”?

后端 未结 5 1444
野趣味
野趣味 2021-02-04 09:33

One of job interview questions on C pointers here is the following: what is null pointer assignment error?

I\'ve googled for a while and don\'t see any reasonab

5条回答
  •  一整个雨季
    2021-02-04 10:01

    It is a run time error occurs when you try to point illegal memory space, usually address 0 which is reserved for OS.

提交回复
热议问题