c语言 结构体动态创建

 1 #include<stdio.h>
 2 #include<malloc.h>
 3 struct Student
 4 {
 5     int num;
 6     int total;
 7     char name[20];
 8     float score[3];
 9 };
10
11 int main()
12 {
13     int N,i,j;
14     printf("Please input N:");
15     scanf("%d",&N);
16     struct Student *stu = NULL;
17     stu = (struct Student*)malloc(sizeof(struct Student)*N);
18     for(i = 0; i < N; i++)
19     {
20         stu[i].total = 0;
21         printf("Please input the No%d student‘s number:",i+1);
22         scanf("%d",&stu[i].num);
23         printf("Please input the No%d student‘s name:",i+1);
24         scanf("%s",stu[i].name);
25         for(j = 0; j < 3; j++)
26         {
27             stu[i].score[j] = 0.0;
28             printf("Please input the No%d student‘ score of %d:",i+1,j+1);
29             scanf("%f",&stu[i].score[j]);
30                stu[i].total = stu[i].total + (int)stu[i].score[j];
31         }
32     }
33     for(i = 0; i < N; i++)
34     {
35         if(stu[i].total >= 240)
36         {
37             printf("%d %s\n",stu[i].num,stu[i].name);
38         }
39     }
40     for(i = 0; i < N; i++)
41     {
42         for(j = 0; j < 3; j++)
43         {
44             if(stu[i].score[j] < 60)
45             {
46                printf("%d %s %.2f\n",stu[i].num,stu[i].name,stu[i].score[j]);
47             }
48         }
49     //    printf(" %d \n",stu[i].total);
50     }
51     free(stu);
52     return 0;
53 }
时间: 2024-10-13 00:15:31

c语言 结构体动态创建的相关文章

学习C/C++语言:结构体,动态链表

//*************************************************************** //结构体:简单的静态链表 #include<stdio.h> #include<string.h> #define NULL 0 #define SIZE 10 struct student { char num[SIZE]; float score; struct student *next; }; void main() { struct stu

c语言结构体中动态数组的使用

[背景] c语言结构体中动态数组使得用户能够根据需要来申请空间,相比静态数组,更能有效利用存储空间. [正文] 1. 动态数组在结构体中间 #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { int a; char buf[0]; // 或者char buf[]; int b; }Node; int main() { printf("%d\n", si

c语言结构体链表

原文链接:http://zhina123.blog.163.com/blog/static/417895782012106036289/ 引用自身的结构体,一个结构体中有一个或多个成员的基类型就是本结构体类型时,说明这个结构体可以引用自己,所以称作引用自身的结构体. 例如下面的结构体: struct link{ char ch; struct link *p} a; p是一个可以指向struct link类型变量的指针成员,这样,a.p=&a就是合法的表达式.那么,这有什么意义呢? 这样的意义就

c 语言 结构体

结构体初学者都有点小怕其实思维清晰之后你会发现结构体是个非常好的东西,嘿嘿. 第一,结构体的定义和初始化.别被书上大量的描述吓到 1.怎么定义结构体了例子如下,我们以构建一个包含学生姓名,年龄,Email为例子 1 struct 2 { 3 char name; 4 int age; 5 char Email; 6 }person; 现在我们定义就已经完成了,当然这是我最喜欢的范式,你们也可以在书上找到自己喜欢的. 2.怎么初始化了?结构体一般初始化都是以结构体数组的形式来的所以我们只说这个 t

C语言 结构体存储空间分配

这两天在看结构体,一直在琢磨结构体的存储空间分配的问题,琢磨了半天总算明白了.和大家分享一下,希望能有所帮助.相信大家都知道结构体里元素存储要对齐吧,话虽是没错,只是这个"对齐"里面包含了很多微妙的东西.首先详细的给出结构体内存存储空间分配的原则吧:编译器按照成员列表顺序一个接一个地给每个成员分配内存.只有当存储成员时需要满足正确的边界对齐要求时,成员之间才可能出现用于填充的额外内存空间.而且还有3点要求:结构体变量的首地址要能够被其最宽基本类型元素的大小所整除.结构体的每个元素相对于

C语言——结构体数组的使用案例(如何判断两个矩形是否相交,其中一个是否包含在另外一个里面,点是否在矩形中)

Rect.h struct CPoint { float x; float y; }; typedef struct CPoint CPoint; struct CSize { float width; float height; }; typedef struct CSize CSize; struct CRect { CPoint origin; CSize size; }; typedef struct CRect CRect; //判断两个矩形是否相交 BOOL isIntersecti

C语言 结构体指针赋值 incompatible types when assigning to type &#39;char[20]&#39; from type &#39;char *&#39;

strcpy(pstudent->name, "guo zhao wei "); 为什么错误,该怎么写,(红色行) 追问 为什么不能直接赋值啊, 追答 用char nnnn[20]定义的,用strcpy 用char *ppp定义的,用=来赋值 C语言 结构体指针赋值 incompatible types when assigning to type 'char[20]' from type 'char *'

漫谈C语言结构体struct、公用体union空间占用

先用代码说话: #include<stdio.h> union union_data0{ int a ;//本身占用4个字节 char b ;//本身占用1个字节 int c ; }; union union_data1{ short a;//本身占用2个字节 char b[13];//本身占用13个字节 int c ;//本身占用4个字节 }; struct struct_data{ int a ;//int本身占用4个字节,偏移量为0 char b ;//char本身占用1个字节,偏移量为

C语言结构体,C语言结构体指针,java对象引用,传值,传地址,传引用

C语言结构体,C语言结构体指针,java对象引用,传值,传地址,传引用 传值 把实参的值赋值给行参 那么对行参的修改,不会影响实参的值 传地址 传值的一种特殊方式,只是他传递的是地址,不是普通的如int 那么传地址以后,实参和行参都指向同一个对象 传引用 真正的以地址的方式传递参数 传递以后,行参和实参都是同一个对象,只是他们名字不同而已 对行参的修改将影响实参的值 所谓变量是内存地址的一个抽象名字,在静态编译的程序中,所有变量名都会在编译时转换成内存地址,机器不知道变量名,只知道地址. C 语