Advertisement
Guest User

badchar by flawless

a guest
Jan 4th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. main(int argc, char **argv){
  4.  
  5.     int c = 0;
  6.  
  7.     printf("\"");
  8.     while (c<= 255)
  9.             printf("\\x%.2x", c++);
  10.     printf("\"");
  11.     return 0;
  12.  
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement