Posts by GianL • 1 point
1 post
-
-1
votes1
answer76
viewsA: Doubts about pointers and dynamic allocation
#include <stdlib.h> #include <string.h> #include <conio.h> #include <stdio.h> typedef struct{ int dia,mes,ano; }data; typedef struct { char matricula[10]; data _matricula;…