1
What kind of return to use in a chained list? For example, insert at the beginning of the list.
void inserir(pessoas **pessoa, int valor)
no return (void
). Or return a pointer from the list.
pessoas* inserir(pessoas **pessoa, int valor)
Which would be more appropriate?