中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c語言結構體怎么賦值給另一個結構體

小億
668
2024-05-09 11:44:52
欄目: 編程語言

在C語言中,結構體可以通過直接賦值的方式將一個結構體賦值給另一個結構體。例如:

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

// 定義一個結構體
struct Student {
    char name[20];
    int age;
};

int main() {
    // 創建一個結構體變量并賦值
    struct Student student1;
    strcpy(student1.name, "Alice");
    student1.age = 20;
    
    // 將student1賦值給另一個結構體變量
    struct Student student2 = student1;
    
    // 輸出student2的信息
    printf("Student 2\n");
    printf("Name: %s\n", student2.name);
    printf("Age: %d\n", student2.age);
    
    return 0;
}

在上面的例子中,我們定義了一個名為Student的結構體,包含nameage兩個成員變量。然后創建了一個student1結構體變量,并賦值為Alice20。接著通過直接將student1賦值給student2的方式,將student1的值復制給student2。最后輸出student2的信息,可以看到student2的信息與student1相同。

0
洞口县| 舒城县| 崇文区| 大同市| 霍城县| 玉溪市| 南丰县| 瓮安县| 永修县| 上思县| 鄂伦春自治旗| 合肥市| 广汉市| 曲麻莱县| 东丰县| 柳州市| 蕉岭县| 元阳县| 区。| 庆城县| 西乡县| 福泉市| 岳池县| 雷州市| 天门市| 磐安县| 澎湖县| 城口县| 青浦区| 西宁市| 资兴市| 河北省| 兴文县| 大兴区| 西平县| 镇坪县| 邯郸市| 许昌市| 绵竹市| 贵德县| 晋中市|