C语言结构体

#include<stdio.h>

#include<string>
struct Student
{
int num;
char name[20];
char sex;
int age;
float score;
char address[30];
};

 

int main() {

 

{
struct Student student01;
student01.num = 1;
// student01.name = "zhangsan";
strcpy_s(student01.name, "Allen");

student01.sex = ‘M‘;
student01.score = 100.0f;
student01.age = 32;
//student01.address
strcpy_s(student01.address, "江苏省苏州市");

printf("num : %d\n", student01.num);
printf("name : %s\n", student01.name);
printf("sex : %c\n", student01.sex);
printf("score : %f\n", student01.score);
printf("age : %d\n", student01.age);
printf("address : %s\n", student01.address);
}

 

 

}

C语言结构体

上一篇:Spring Cloud是什么


下一篇:第 41 题:请描述一下 Javascript 事件循环机制?