C语言学习(27)
1 //用指向指针的指针输出若干字符串 2 #include<stdio.h> 3 int main(){ 4 char *name[]={"Basic","Visual Basic","C","Visual C++","Pascal","Delphi"}; 5 char **p; 6 p=name; 7 for(int i=0;i<6;i++){ 8 printf("%s\n",*p); 9 p++; 10 } 11 return 0; 12 }

posted on 2018-06-28 11:30 孙悟空son_ku_kong 阅读(119) 评论(0) 收藏 举报
浙公网安备 33010602011771号