Posts by Capybara • 53 points
4 posts
-
1
votes2
answers781
viewsQ: How to make an object inside a JSON object in Java?
I’m trying to build the following JSON: { "movies": { "filme": [ { "id":1, "titulo":"Os Arquivos JSON ", }, { "id":2, "titulo":"Sexta-feira 13: JSON vive", } ] } } I’m wearing the bible org.json.…
-
1
votes1
answer120
views -
1
votes1
answer127
viewsQ: How to store a chained list
Hello, I have some questions that I will illustrate below: Having two double chained lists A and B with the structure struct lista { Ponto* dado; /* dado = número */ struct lista *prox; /* ponteiro…
-
1
votes1
answer924
viewsQ: How to print a list in C?
/* define a struct TAD lista */ struct lista { float info; /* dado */ struct lista *prox; /* ponteiro para o proximo elemento */ }; typedef struct lista Lista; I have the struct above and the…