标签:
1、如下代码
char c[5] = {‘h‘, ‘a‘, ‘\0‘}; char *p = c; cout << c << endl; cout << p << endl;
输出结果为
ha
ha
2、分析
不论是指定字符串的名字还是指向字符串的指针,都输出的是字符串,这是由于cout 对字符数组做了处理。
如果想要打印字符串的地址的话,使用如下代码
cout << static_cast<void*>(c) << endl; cout << static_cast<void*>(p) << endl;
标签:
原文地址:http://www.cnblogs.com/aqing1987/p/4203103.html