上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 207 下一页

2011年8月22日

变态的指针用法

摘要: #include <windows.h>#include <iostream>using std::cout; using std::endl;int main(){char *str[]={"Welcome","to","Fortemedia","Nanjing"};char **p=str+1;//p指向str[1]str[0]=(*p++)+2; //p指向str[2] str[0]="\0"str[1]=*(p+1); //str[1]="Nanjing 阅读全文

posted @ 2011-08-22 08:49 原来... 阅读(547) 评论(0) 推荐(0)

上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 207 下一页

导航