C语言中怎么显示所有记录

482
2024/5/24 9:29:12
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C语言中,要显示所有记录,需要使用循环遍历所有记录并将其打印出来。下面是一个示例代码:

#include <stdio.h>

struct Record {
    int id;
    char name[50];
    int age;
};

int main() {
    struct Record records[3] = {
        {1, "Alice", 25},
        {2, "Bob", 30},
        {3, "Charlie", 35}
    };

    for (int i = 0; i < 3; i++) {
        printf("Record %d:\n", i+1);
        printf("ID: %d\n", records[i].id);
        printf("Name: %s\n", records[i].name);
        printf("Age: %d\n", records[i].age);
    }

    return 0;
}

在上面的示例中,定义了一个结构体Record表示记录,然后创建了一个包含3条记录的数组records。接着使用循环遍历数组中的每一条记录,并将其逐条打印出来。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C语言怎么实现二分法