#include <stdio.h>
struct student{
char sex;
int age;
char name[9];
float score;
};
int main(void){
printf("length is %ld\n",sizeof(struct student));
return 0;
}
Realank刘
qq___524
相关分类