cout输出问题! 紧急
#include<iostream.h>#include<string.h>
void main()
{
char a[20],*str1="hello",*str2="wang";
cout<<str2;
}
为什么cout输出的不是str2所指向的字符串的地址?
#include<iostream.h> void main() { char a[20],*str1="hello",*str2="wang"; cout<<(int*)str2; }