码迷,mamicode.com
首页 > 其他好文 > 详细

cout与字符指针

时间:2014-08-30 20:23:39      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   os   io   ar   2014   log   sp   

#include <iostream>

using namespace std;

int main( int argc, char **argv )

{

char c=‘x‘;

char *p=&c;

cout<<p<<endl;

cout<<*p<<endl;

cout<<(void *)p<<endl;///P指向内容的地址

cout<<&p<<endl;

}

输出结果:即如果指针p存的是字符的地址,而不是字符数组的地址,那么cout<<p得到的不是p指向的内容(当然如果p指向字符数组那么cout<<p得到字符数组内容),而是P的地址,并且必须要加上(*void)否则出现乱码

 

bubuko.com,布布扣

 

cout与字符指针

标签:style   blog   http   os   io   ar   2014   log   sp   

原文地址:http://www.cnblogs.com/notlate/p/3946782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!