糊涂期待

文章
3
资源
0
加入时间
3年0月9天

结构体和数组的结合

例1:#include <stdio.h>#include <string.h>struct Student{ int num; char name[32]; char sex; int age; double score; char addr[32];};int main(){ int arr[3]={1,2,3}; int i; int len; struct Student arr2[3]={...