Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. int hasBeenFound(char found, char new){
  2.  
  3. for (i = 0; i < found.length(); i++;)
  4. {
  5. if found[i] == new{
  6. return 0;
  7. }
  8. }
  9.  
  10. return 1;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement