Posts by Yuri Carlos • 1 point
2 posts
-
0
votes0
answers78
viewsQ: Doubt when creating structs, relating one struct to another
I created the following structs: typedef struct cliente{ unsigned long int codigo; char nome[50]; char endereco[50]; char cpf[11]; char idade[3]; struct cliente* prox; }Cliente; typedef struct…
casked Yuri Carlos 1 -
0
votes1
answer32
viewsQ: The system is not reading the requested line
I made the code below to read simple date information, but when it reads the day, it strangely asks for two entries, and ends up going one to the variable diatemp and the other to the mestemp,…