Advertisement
Guest User

adgfhjk

a guest
Dec 4th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. char* szukaj(char *t,char znak)
  2. {
  3. while((*t)!='\0')
  4. {
  5. if((*t)==znak)
  6. {
  7.  
  8. return t;
  9. }
  10. t++;
  11. }
  12. *t=NULL;
  13. return t;
  14.  
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement