Hello. I'm developing this function below:
void inserir_inicio (tipo_lista * p, tipo_lista * novo_no)
{
novo_no -> prox = p;
p = novo_no;
}
And in main
I'm calling:
inserir_inicio(&p, cria_no(1));
imprimir_lista(p);
And when I run nothing comes out on the screen.
Can anyone tell me if the insert_target function is wrong?