Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2.  
  3. void hacker()
  4. {
  5.         printf("No, I'm a hacker!\n");
  6. }
  7.  
  8. void inSecure()
  9. {
  10.         char name[30];
  11.         printf("What is your name?\n");
  12.         gets(name);
  13.         printf("Hey %s, you're harmless, aren't you?\n", name);
  14. }
  15.  
  16. int main()
  17. {
  18.         inSecure();
  19.         return 0;
  20. }