C 014-C 字符串
在线练习: http://noi.openjudge.cn/ https://www.luogu.com.cn/
字符串
目标
1、了解字符串的基本概念 2、掌握字符串输入输出方法 3、掌握字符串复制、拼接、比较大小、求长度等方法
参考:https://www.cnblogs.com/zhaoyunt/p/15360127.html
char[]和string
先阐述C 中char[],string的区别和联系.
char[]
代码语言:javascript复制#include <iostream>
using namespace std;
int main()
{
char a[10] = "123";
a[4]='5';
a[3]='4';
cout << a;
return 0;
}
// 输出:12345,此程序在a[5]的位置自动写入了'