Posts by Snow • 53 points
3 posts
-
0
votes0
answers50
viewsQ: Procedure is only running the first part, why?
Good afternoon, I have two tables, one table tb_addresses with attributes idaddress int(11), idperson int(11), desaddres varchar(128), descomplement varchar(128) And there is a primary key of the…
-
1
votes1
answer32
viewsQ: Program stops responding when I try to fill the list
This is the code, it simply reads the values and puts it on the list, but in the last loop it stops responding #include<stdio.h> #include<stdlib.h> typedef struct pessoa { int…
-
3
votes1
answer98
viewsQ: How does malloc() organize memory?
When I allocate memory with malloc(), address equals an array? Or are spread across the PC memory? I want to create a list of structs, to do this, I have to have several structs in case, I can do…