有什么方法可以计算以下指针数组中的字数?
#include<iostream.h>
void main()
{
char *city[2]={"America","England"};
while(city[0]!='\0')
{
count++;
}
cout<<count;
}
如果一个人获得A的地址,那么它是可能的,但是如何访问美国的'A'地址。
通过执行以下所有操作,我可以获取 ptr 数组而不是 A 的地址。
cout<<&city[0]<<endl;
cout<<&city<<endl;
cout<<city<<endl;
cout<<city[0]<<endl;
cout<<*(&city[0])<<endl;
cout<<&(*city)<<endl; // Question ??? Again address of ptr.
帮帮我。