字符数组
Posted TOTO2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符数组相关的知识,希望对你有一定的参考价值。
#include <iostream> using namespace std; int main(){ //C++当中字符数组赋值,\'\'单引号中不能为空 char talk[10]={\'G\',\'o\',\' \',\'p\',\'a\',\'l\',\'y\',\'e\',\'r\',\'!\'}; for(int i=0;i<10;i++){ cout<<talk[i]; } cout<<endl; }
#include <iostream> using namespace std; int main(){ //C++当中字符数组赋值,\'\'单引号中不能为空 char talk[5][5]={{\' \',\' \',\'*\'}, {\' \',\'*\',\' \',\' \',\'*\'}, {\'*\',\' \',\' \',\' \',\'*\'}, {\' \',\'*\',\' \',\'*\'}, {\' \',\' \',\'*\'}}; for(int i=0;i<5;i++){ for(int j=0;j<5;j++) cout<<talk[i][j]; cout<<endl; } cout<<endl;
}
#include <iostream> #include <string.h> using namespace std; int main(){ //C++当中字符数组赋值,\'\'单引号中不能为空 char str1[30]="People\'s Republic of "; char str2[]="China"; cout<<strcat(str1,str2); }
以上是关于字符数组的主要内容,如果未能解决你的问题,请参考以下文章
csharp LINQPad片段声明了两个字符串数组,吐出了它们互斥的部分。
csharp LINQPad片段声明了两个字符串数组,吐出了它们互斥的部分。
NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段