摘要:
#include <iostream>#include <string> int main() { using namespace std; char t[5]={'a','b','c','f','g'}; for(char *b=t,*q=b+5;b!=q;b++) {//注意cout对char类型的处理 cout << (void*)b << endl; cout << b << endl; cout << *b << 阅读全文
posted @ 2013-01-16 11:04
bluce chen
阅读(589)
评论(0)
推荐(0)