Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. else if ((strcmp(x.nome,aux->item.nome))>0)
  2.     {
  3.         Insere (&lista, x);
  4.     }
  5.     else if((strcmp(x.nome,aux->item.nome))<0)
  6.     {
  7.         while (aux->prox!=NULL)
  8.         {
  9.             aux2=x.nome;
  10.             while((strcmp(*aux2,*aux1))>0)
  11.             {
  12.                 aux->prox = aux2;
  13.             }
  14.         }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement