Advertisement
Guest User

no kurwa

a guest
Aug 28th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. void f(const char * str) {
  5.   printf("%d\n", str[4]);
  6. }
  7.  
  8. int main() {
  9.   f("\x03""www""\x01""a""\x02""pl");
  10.   f("\x03www\x01a\x02pl");
  11.   return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement