c strncpy strncat函数 demo

Posted luckygxf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c strncpy strncat函数 demo相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <string.h>


int main(int argc, char **argv) {
    char city[50] = "chengdu";
    char name[30] = "guanxianseng";
    char cityAndName[90];
    strncpy(cityAndName, city, 50);
    strncat(cityAndName, "_", 1);
    strncat(cityAndName, name,30);
    printf("cityAndName:%s
", cityAndName);

    return 0;
}

  技术图片

 

以上是关于c strncpy strncat函数 demo的主要内容,如果未能解决你的问题,请参考以下文章

C语言进阶字符函数和字符串函数

字符串函数的介绍与模拟实现

模拟实现strncpy,strncat,strncmp

模拟实现atoi strncat strncpy(注释)

模拟实现atoi strncat strncpy(注释)

strncpy()函数的功能