摘要: #include <iostream> using namespace std; int main(){ //1.char[] to char * char c1[] = "aa"; char * c2 = c1; cout << c2 << endl; //2.char * to char[] c 阅读全文
posted @ 2019-10-17 16:36 liw66 阅读(153) 评论(0) 推荐(0) 编辑