C 라이브러리 함수 char *strcat(char *dest, const char *src) src가 가리키는 문자열을 추가합니다. dest가 가리키는 문자열의 끝까지 .
문자 배열을 문자열이라고 합니다.
선언
다음은 배열에 대한 선언입니다 -
char stringname [size];
예를 들어 - char string[50]; 길이 50자의 문자열
초기화
- 단일 문자 상수 사용 -
char string[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}
- 문자열 상수 사용하기 -
char string[10] = "Hello":;
액세스 − '\0'이 나타날 때까지 문자열에 액세스하는 데 사용되는 제어 문자열 "%s"가 있습니다.
strcat() 함수
-
두 문자열을 결합하거나 연결하는 데 사용됩니다.
-
대상 문자열의 길이는 원본 문자열보다 커야 합니다.
-
결과 연결 문자열은 소스 문자열입니다.
구문
구문은 다음과 같습니다 -
strcat (Destination String, Source string);
예시 프로그램
다음 프로그램은 strcat() 함수의 사용법을 보여줍니다.
#include <string.h> main(){ char a[50] = "Hello \n"; char b[20] = "Good Morning \n"; strcat (a,b); printf("concatenated string = %s", a); }
출력
위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -
Concatenated string = Hello Good Morning
예시
다른 예를 살펴보겠습니다.
다음은 strcat 라이브러리 함수 -
를 사용하여 소스 문자열을 대상 문자열에 연결하는 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 : \n"); gets(source); printf("Enter the destination string : \n"); gets(destination); //Concatenate all the above results// strcat(source,destination); //Printing destination string// printf("The modified destination string :"); puts(source); }
출력
위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -
Enter the source string :Tutorials Point Enter the destination string :C programming The modified destination string :Tutorials Point C programming