Chinaunix首页 | 论坛 | 博客
  • 博客访问: 279006
  • 博文数量: 138
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 971
  • 用 户 组: 普通用户
  • 注册时间: 2015-03-03 10:05
文章分类

全部博文(138)

文章存档

2016年(1)

2015年(137)

我的朋友

分类: C/C++

2015-07-08 12:31:01

char * ptr;
ptr=(char*)malloc(0);
if(ptr==NULL)
{
cout<<"it is a null pointer"<<endl;

}
else
{
cout<<"it is a non-null pointer"<<endl;
cout<<"the length is "<<sizeof(ptr)<<endl;
cout<<"the strlen is "<<strlen(ptr)<<endl;
}


输出结果:it is a non-null pointer
                the length is 4
            
    the strlen is 16
把0传给malloc,可以得到一个合法的指针。
阅读(863) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~