词条 | stract |
释义 | 字符串连接函数用法 strcat(a,b); 其中a,b是指两个字符串变量名strcat的作用是把字符串a的结尾和字符串b的开始相连并存储于字符串a中 strcat 原函数形成#include <stdio.h> #include<stdlib.h> char* Strcat(char *arr1,char *arr2) { char* tempt = arr1; while(*arr1!='\\0') { arr1++; } while(*arr2!='\\0') { *arr1 = *arr2; arr1++; arr2++; } *arr1 = '\\0'; return tempt; } int main() { char a[20] = "hello"; char b[20] = ",everyOne!"; printf("%s",Strcat(a,b)); system("pause"); return 0; } |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。