标准c语言使用结构体的实例
时间: 2023-09-06 12:11:56 浏览: 117
在定义结构体类型的同时定义结构体变量-C语言超级好的资料
下面是一个标准C语言使用结构体的实例:
```c
#include <stdio.h>
// 定义结构体
struct student {
char name[20];
int age;
float score;
};
int main() {
// 初始化结构体变量
struct student stu = {"Tom", 18, 90.5};
// 输出结构体变量的值
printf("Name: %s\n", stu.name);
printf("Age: %d\n", stu.age);
printf("Score: %.1f\n", stu.score);
return 0;
}
```
这个例子定义了一个名为`student`的结构体,包括三个成员变量`name`、`age`和`score`。在`main`函数中,定义了一个`stu`变量,并使用结构体初始化方式初始化了该变量的值。最后,通过`printf`函数输出了结构体变量中的值。
值得注意的是,结构体变量的成员可以通过`.`操作符来访问,如`stu.name`、`stu.age`和`stu.score`。
阅读全文