Posts by Dev Praticar • 11 points
1 post
-
0
votes1
answer34
viewsQ: Allocate Attribute Memory in Structure
I need to allocate more memory of the note attribute of the Student structure: #include <stdio.h> #include <stdlib.h> struct Aluno { int matricula; int nota; }; void cadastraNotas(struct…