Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. void imprime_dic (dic *dicionario){
  2. int c,aux=0;
  3. while (dicionario && aux<100){
  4.  
  5. c=0;
  6. aux++;
  7. while(c<(dicionario->tamanho)){
  8. printf("->%s ", dicionario->cor[c]);
  9. c++;
  10. }
  11. printf("\n\n");
  12. dicionario=dicionario->next;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement