请问怎样检查指针的字节长度
请问怎样检查指针的字节长度
#include <string.h>
#include <stdio.h>
main()
{
int *p=NULL;
printf("%d %d",sizeof(p),strlen(p));
getch();
return 0;
}
[ 本帖最后由 xy4919961 于 2009-11-24 21:02 编辑 ]