当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 strncat()用法及代码示例


C库函数char *strncat(char *dest, const char *src, size_t n)将 src 指向的字符串追加到 dest 指向的字符串的末尾,最多 n 个字符。

字符数组称为字符串。

声明

以下是数组的声明 -

char stringname [size];

例如:char string[50];长度为 50 个字符的字符串

初始化

  • 使用单字符常量 -
char string[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}
  • 使用字符串常量 -
char string[10] = "Hello":;

Accessing− 有一个控制字符串 "%s" 用于访问字符串,直到遇到“\0”。

strncat() 函数

  • 这用于将一个字符串的 n 个字符组合或连接成另一个。

  • 目标字符串的长度大于源字符串。

  • 结果连接的字符串将在源字符串中。

语法如下 -

strncat (Destination String, Source string,n);

示例

以下程序显示了 strncat() 函数的用法 -

#include <string.h>
main ( ){
   char a [30] = "Hello \n";
   char b [20] = "Good Morning \n";
   strncat (a,b,4);
   a [9] = "\0";
   printf("concatenated string = %s", a);
}

输出

执行上述程序时,会产生以下结果 -

Concatenated string = Hello Good.

让我们看另一个例子 -

下面给出的是使用 strncat 库函数将 n 个字符从源字符串连接到目标字符串的 C 程序 -

#include<stdio.h>
#include<string.h>
void main(){
   //Declaring source and destination strings//
   char source[45],destination[50];
   //Reading source string and destination string from user//
   printf("Enter the source string:");
   gets(source);
   printf("Enter the destination string before:");
   gets(destination);
   //Concatenate all the above results//
   destination[2]='\0';
   strncat(destination,source,2);
   strncat(destination,&source[4],1);
   //Printing destination string//
   printf("The modified destination string:");
   puts(destination);
}

输出

执行上述程序时,会产生以下结果 -

Enter the source string:Tutorials Point
Enter the destination string before:Tutorials Point C Programming
The modified destination string:TuTur

相关用法


注:本文由纯净天空筛选整理自Bhanu Priya大神的英文原创作品 What is strncat() Function in C language?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。