Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. while(fgets(atual,99,nomes) != NULL)
  3. {
  4. printf("%d",strlen(atual));
  5.  
  6. atual[strlen(atual)-1] = 0;
  7.  
  8. if(strcmp(atual,nome) != 0)
  9. {
  10. printf(atual);
  11. strcpy(aux,atual);
  12. fputs(aux,auxilio);
  13. }
  14.  
  15. else
  16. {
  17. printf("encontrado!");
  18. }
  19.  
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement