mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-10-01 01:25:43 -04:00
24 lines
335 B
C
24 lines
335 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void secretFunction()
|
||
|
{
|
||
|
printf("Omar's Crappy Function\n");
|
||
|
printf("This is a super secret function!\n");
|
||
|
}
|
||
|
|
||
|
void echo()
|
||
|
{
|
||
|
char buffer[20];
|
||
|
|
||
|
printf("Please enter your name below:\n");
|
||
|
scanf("%s", buffer);
|
||
|
printf("You entered: %s\n", buffer);
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
echo();
|
||
|
|
||
|
return 0;
|
||
|
}
|