#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);
}
}