Advertisement
Guest User

Untitled

a guest
Oct 9th, 2013
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. bash-4.1$ cat Rozuur.c
  2. main(c){while(c=getchar(),~c)putchar(c-64u<27?c+32:c);}
  3.  
  4. bash-4.1$ cc Rozuur.c
  5.  
  6. bash-4.1$ ./a.out <<< 'Hello @ WORLD !'
  7. hello ` world !
  8.  
  9. bash-4.1$ sed -i s/64/65/ Rozuur.c
  10.  
  11. bash-4.1$ cat Rozuur.c
  12. main(c){while(c=getchar(),~c)putchar(c-65u<27?c+32:c);}
  13.  
  14. bash-4.1$ cc Rozuur.c
  15.  
  16. bash-4.1$ ./a.out <<< 'Hello @ WORLD !'
  17. hello @ world !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement