// C语言NULL指针
// C语言NULL指针 --------------------
#include <stdio.h>
int main () {
int *ptr = NULL;
printf("The value of ptr is : %x/n", ptr );
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/265145.html
// C语言NULL指针
// C语言NULL指针 --------------------
#include <stdio.h>
int main () {
int *ptr = NULL;
printf("The value of ptr is : %x/n", ptr );
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/265145.html