字符串连接[不用库函数]
Posted YuRi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串连接[不用库函数]相关的知识,希望对你有一定的参考价值。
#include "stdio.h" #include "string.h" char *str(char d[],char s[]) { char *p=d;; while(*p!=‘\0‘)p++; do { *p++=*s++; }while(*s!=‘\0‘); *p=0; return d; } int main() { char d[20],s[20]; strcpy(d,"string "); strcpy(s,"cat"); printf("%s\n",str(d,s)); }
以上是关于字符串连接[不用库函数]的主要内容,如果未能解决你的问题,请参考以下文章
.Net Core Api EntityFrameworkCore 设置多连接字符串