Posts by user18400 • 11 points
1 post
-
1
votes1
answer5855
viewsQ: Pointer of struct inside a struct
I cannot assign value to a variable of a pointer struct within a struct. My structs: typedef struct notas{ float geral; float especifica; }Notas; typedef struct data{ int dia,mes,ano; }Data; typedef…