Guest User

Untitled

a guest
Jan 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char buffer;
  6. int random = (int)&buffer % 6;
  7.  
  8. printf("[*] 1~6 random : %d\n", random+1);
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment