c语言结构体保存并输出学生信息

Posted 漠言

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言结构体保存并输出学生信息相关的知识,希望对你有一定的参考价值。

最近在学习数据结构,巩固下c语言。

#include<stdio.h>
/*定义结构体student并设置别名stud*/

/*typedef struct student{
    int num;
    char *name;
    int score;
}stud;
*/

/*同上面4行代码*/
struct student{
    int num;
    char *name;
    int score;
};
typedef struct student stud;


stud stu[3] = {
    {1026,"Jack",100},
    {1028,"Michael",80},
    {1030,"Nice",30}
};

int main()
{
    int i;
    for(i=0;i<3;i++)
    {
        printf("%d,Name:%s,score:%d\n",stu[i].num,stu[i].name,stu[i].score);
    }
    return 0;
}

 

以上是关于c语言结构体保存并输出学生信息的主要内容,如果未能解决你的问题,请参考以下文章

C语言结构体,求大佬指点

c语言:用结构体变量输出学生的信息,包括学号,姓名,性别。

c语言结构体排序示例

C语言结构体排序

C语言程序输入5学生3门课成绩并输出平均分用结构体指针做

c语言中如何将按结构体中的某个元素大小,将结构体排序输出