vs2010编译C++ 指向指针的指针
1 #include "stdafx.h" 2 #include <iostream> 3 using namespace std; 4 5 int _tmain(int argc, _TCHAR* argv[]) 6 { 7 char **p; 8 char * b[] = {"Fortran","C/C++","Pascal","Basic"}; 9 p = b; 10 cout<< *p<<endl; //将指针p指向p[0] 11 cout<<**p<<endl; //指针指向P[0][0] 12 p = b + 2; 13 cout<<*p<<endl; //输出P指向的第二个单元 14 cout<<*(*p+2)<<endl;//输出b[2]+2指向的数组元素b[2][2] 15 system("pause"); 16 return 0; 17 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。