#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define _CRT_SCURCE_NO_WARINGS
int main()
{
//空指针就是指向空地址的一个指针,通常用于条件判断来使用
int *p1 = NULL;
printf("%p", p1);
system("pause");
return 0;
}
2024-03-19 13:59:40
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define _CRT_SCURCE_NO_WARINGS
int main()
{
//空指针就是指向空地址的一个指针,通常用于条件判断来使用
int *p1 = NULL;
printf("%p", p1);
system("pause");
return 0;
}