Posts by user2296455 • 55 points
3 posts
-
1
votes1
answer72
viewsQ: Compiler accuses typing error when there is no typing error
I have the struct struct no { int numero[2]; std::string nome; float valorDoNome; struct no *esq, *dir; }; struct no *raiz, *aux1, *aux2,*favoritos; The function { raiz->valorDoNome=0; int…
-
0
votes1
answer2416
viewsQ: remove a specific item from a chained list in c
have the struct LDISP { int idAviao; struct LDISP *prox; }; typedef struct LDISP ldisp; I already have the process of adding I would like to know how I can remove from a list an item whose int is…
casked user2296455 55 -
3
votes2
answers4918
viewsQ: How to count how many times an item repeats in an Array with unknown size?
How to count how many times an item appears in an Array I don’t know the size of? The array was created from a . CSV.