在c++中用cout输出整个字符数组:
char*p="Hello,World!";
cout<
cout<<*p< cout<<(void*)p< cout<<';'< 扩展资料 在c++中用cout输出使用: #include intmain(){ constshortITEMS=5; intintArray[ITEMS]={1,2,3,4,5}; charcharArray[ITEMS]={'L','M','Y','L','R'}; int*intPointer=intArray; char*charPointer=charArray; std::cout<<"整形数组输出"<<"\n"; for(inti=0;i std::cout<<*intPointer<<"at"< intPointer++; } std::cout<<"字符型数组输出"<<"\n"; for(inti=0;i std::cout<<*charPointer<<"at"< charPointer++; } return0; }
可以通过逐个输出字符数组元素的方式进行输出。
如果直接输出数组名,系统默认以字符串方式输出,遇到结束符\0就会停止。要无条件输出字符数组内的所有元素个数,那么只能遍历数组,逐个元素输出。
参考代码如下:
#include
using namespace std;
int main()
{
char buf[5] = {'a', '\0', 'c', 'D', ','};//中间有\0,且最后一个字符并非\0,这种字符数组用cout << buf的方式是无法正确输出的。
int i;
for(i = 0; i < 5; i ++)//逐个输出每个元素。
cout << buf[i];
return 0;
}
cout<<数组名就可以了,但前提是数组中保存的是字符串,有\0元素。
如不是字符串,就得
for (i=0; i
C++中利用cout的“<<”操作符可以实现字符数组的输出。
例如:
char p[5]="abcd";
cout<
例子,
char buf[]="Let's go to the party";
cout<