Posts by Pablo Borsone • 25 points
2 posts
-
2
votes1
answer89
viewsQ: What do the following lines of code do?
I have this code: Arvore* arv_insere (Arvore* arvore, Registro* registro){ if (arvore == NULL){ printf(COLOR_RED "ERROR: Arvore não inicializada" COLOR_RESET "\n"); exit(1); } float direction =…
casked Pablo Borsone 25 -
0
votes1
answer24
viewsQ: How do I update the data? Ionic2
Hello! I started learning programming recently and I’m using the "Ionic2" framework. However, I would like to know how I can update the data. For example: I created a Star Wars app and tomorrow I…