CS/C언어
[C언어] strcpy/strcat 함수 익히기
하루설렘
2021. 12. 20. 13:42
strcpy/strcat 함수
- strcpy(char* dest, const char* src) : dest에 src를 한자한자 덮어쓰기한다.
- strcat(char* dest, const char* src) : dest 뒤에 src를 붙인다.
코드 확인
#include <stdio.h>
#include <string.h>
int main(void)
{
char arr1[100];
char arr2[100];
char arr3[100];
// arr1 선언
strcpy(arr1, "hello, i am array");
printf("%s\n", arr1);
// arr2 선언
strcpy(arr2, "This is following text");
printf("%s\n", arr2);
// arr1 = arr1 + arr2
strcat(arr1, arr2);
printf("%s\n", arr1);
}
//////////결과값//////////////
hello, i am array
This is following text
hello, i am arrayThis is following text