c语言struct用法

C语言struct用法 。 语法:struct 结构体名{ 结构体所包含的变量或数组};
需要这些哦
电脑
Dev C++
方式/
1鼠标点击打开Dev C++软件 , 如图所示:

c语言struct用法

文章插图

2打开之后 , 显示如图所示:
c语言struct用法

文章插图

3点击新建一个源代码 , 如图所示:
c语言struct用法

文章插图

4然后键入如下代码:
#include <stdio.h>
int main(){
    struct{
        char *name;  //姓名
        int num;  //学号
        int age;  //春秋
        char group;  //地点小组
        float score;  //成就
    } stu1;
    //给布局体所有当作员赋值
    stu1.name = "Tom";
    stu1.num = 12;
    stu1.age = 18;
    stu1.group = 'A';
    stu1.score = 136.5;
    //读取布局体当作员的值
    printf("%s的学号是%d , 春秋是%d , 在%c组 , 本年的成就是%.1f!\n", stu1.name, stu1.num, stu1.age, stu1.group, stu1.score);
    return 0;
}
如图所示:
c语言struct用法

文章插图

5点击运行 , 如图所示:
c语言struct用法

文章插图

6可以看到运行成果为:Tom的序号是12 , 春秋是18 , 在A组 ,
本年的成就是136.5
【c语言struct用法】如图所示:
c语言struct用法

文章插图


以上内容就是c语言struct用法的内容啦 , 希望对你有所帮助哦!

    推荐阅读