用c语言介绍自己,把学生的信息(包括学号 姓名、性别、住址等放在 -个结构体变量 中,然后输出这些信息。要求:至少输出4个 内容的信息。
时间: 2024-03-11 17:48:34 浏览: 154
学生信息(c语言)
好的,以下是用 C 语言介绍自己的代码,其中包含了学号、姓名、性别和住址等信息:
```c
#include <stdio.h>
struct student {
int stu_id;
char name[20];
char gender;
char address[50];
};
int main() {
struct student me = { 20210101, "张三", 'M', "上海市浦东新区" };
printf("学号:%d\n姓名:%s\n性别:%c\n住址:%s\n", me.stu_id, me.name, me.gender, me.address);
return 0;
}
```
输出结果如下:
```
学号:20210101
姓名:张三
性别:M
住址:上海市浦东新区
```
希望能够帮到你!
阅读全文