摘要: 指针的基本知识 C++版 #include <iostream> #include <algorithm> using namespace std; int main() { char ch[6] = "hello"; char* pch = ch; // char数组可以用指针来修改 pch[0] 阅读全文
posted @ 2020-07-26 10:35 程序员曾奈斯 阅读(560) 评论(0) 推荐(0)