Guest User

Untitled

a guest
Nov 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // $ gcc puts_test1.c -o puts_test1
  2. #include <stdio.h>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. puts("this is test.");
  7. puts("d41d8cd98f00b204e9800998ecf8427e");
  8. puts("program exited normally...");
  9.  
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment