Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void hacker()
- {
- printf("No, I'm a hacker!\n");
- }
- void inSecure()
- {
- char name[30];
- printf("What is your name?\n");
- gets(name);
- printf("Hey %s, you're harmless, aren't you?\n", name);
- }
- int main()
- {
- inSecure();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment