溫馨提示×

C語言字符串復(fù)制的方法是什么

小億
126
2023-11-21 03:55:50
欄目: 編程語言

在C語言中,可以使用strcpy()函數(shù)來復(fù)制字符串。該函數(shù)的原型如下:

char *strcpy(char *dest, const char *src);

其中,dest是目標(biāo)字符串的指針,src是源字符串的指針。strcpy()函數(shù)會將源字符串的內(nèi)容復(fù)制到目標(biāo)字符串中,并返回指向目標(biāo)字符串的指針。

示例用法:

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

int main() {
    char src[50] = "Hello, World!";
    char dest[50];

    strcpy(dest, src);

    printf("源字符串:%s\n", src);
    printf("復(fù)制后的目標(biāo)字符串:%s\n", dest);

    return 0;
}

輸出:

源字符串:Hello, World!
復(fù)制后的目標(biāo)字符串:Hello, World!

注意,使用strcpy()函數(shù)時需要確保目標(biāo)字符串的長度足夠大,以防止溢出。另外,C語言還提供了strncpy()函數(shù),可以指定最大復(fù)制的字符數(shù),以避免溢出。

0