1.指针数组和数组指针理解
http://c.biancheng.net/cpp/html/476.html
2.gets等等,ps:现在gets已经不安全了,刷题也不让用了,就用string吧
string str;
getline(cin,str);
int len = str.length(); 访问和字符数组访问是一样的
https://blog.csdn.net/czh1075208140/article/details/79698441
3.C++数组复制
https://blog.csdn.net/huangxiaohui123/article/details/81984175
4.C++字符串与数字互转
https://www.cnblogs.com/happygirl-zjj/p/4633789.html