code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <stdio.h>
#include <string.h>
#include <windows.h>
void print_list(void);

int main(void)
{
int ret;
char input;
char help[5] = "help";

puts("!~Use the help command~!");
printf("Command > ");
scanf("%s", &input);
ret = strcmp(help,input);
if(ret == 0)
{
print_list();
}
}

void print_list(void)
{
puts("[*] a or A : amazon.com");
puts("[*] b or B : boannews.com");
puts("[*] c or C : cgv.co.kr");
puts("[*] d or D : daum.net");
puts("[*] f or F : Facebook.com");
puts("[*] g or G : google.com");
puts("[*] i or I : instagram.com");
puts("[*] n or N : naver.com");
puts("[*] o or O : op.gg");
puts("[*] q or Q : q-net.or.kr");
puts("[*] t or T : twitter.com");
puts("[*] y or Y : youtube.com");
}