标签:bsp 指针 nbsp 作用 null 空指针 int print printf
int *p; p = NULL; int a; if (p != NULL) { *p = 100; } printf("%d",a);
空指针的作用:避免出现野指针。
空指针
原文地址:http://www.cnblogs.com/wangjinshan/p/7090312.html