Skip to content

Instantly share code, notes, and snippets.

@YauzZ
Created January 21, 2019 07:03
Show Gist options
  • Save YauzZ/7a915928a537f670a349bffcadb5a94c to your computer and use it in GitHub Desktop.
Save YauzZ/7a915928a537f670a349bffcadb5a94c to your computer and use it in GitHub Desktop.
直接在C代码中造成野指针错误的代码
// 直接崩溃
int *volatile nptr = 0;
int c = *nptr;
printf("%d", c);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment