Posts by RenanCn • 11 points
2 posts
-
0
votes1
answer119
viewsA: How to block the insertion of information using a List
I got it working. I inserted this function: int pessoa_verifica_fornecedor(Pessoa p, int cpf_fornecedor){ Pessoa aux=p; for(aux=p;aux!=NULL;aux=aux->prox) { if(aux->cpf==cpf_fornecedor) {…
-
1
votes1
answer119
viewsQ: How to block the insertion of information using a List
Well I’m using list structure and I’ve tried everything and so far I can’t. I am trying to get the product entity to receive ONLY the CPF from a vendor. The entity Product works when the entity…