1 post
0
2
1127
I did this example, from to get an idea. #include <stdio.h> #include <stdlib.h> typedef struct Ponto { int x; int y; }ponto; ponto* atribuir(ponto **p) { printf("Digite x: ");…