Advertisement
Guest User

Untitled

a guest
May 5th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. /* run this program using the console pauser or add your own getch, system("pause") or input loop */
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. char sesliler[16]={'a','e','ı','i','o','ö','u','ü','A','E','I','İ','O','Ö','U','Ü'};
  9. char mystring[] = "Ebubekir dogan";
  10.  
  11. int i,j;
  12.  
  13. for(i=0;mystring[i];i++)
  14. {
  15. for(j=0;sesliler[j];j++)
  16. {
  17. if(mystring[i]==sesliler[j])
  18. {
  19. mystring[i]='*';
  20. }
  21. }
  22. printf("%c",mystring[i]);
  23. }
  24.  
  25.  
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement