溫馨提示×

c語言中怎么將字符串賦值給變量

小億
304
2024-03-07 10:55:20
欄目: 編程語言

在C語言中,可以使用strcpy()函數(shù)將字符串賦值給變量。例如:

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

int main() {
    char str1[20];
    char str2[] = "Hello, World!";

    strcpy(str1, str2);

    printf("str1: %s\n", str1);

    return 0;
}

上面的代碼中,我們首先定義了兩個字符數(shù)組str1和str2,然后使用strcpy()函數(shù)將str2中的字符串賦值給str1,最后打印輸出str1的值。運行結(jié)果為:

str1: Hello, World!

0