forked from mojadita/twelvedays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwelve_days.c
53 lines (52 loc) · 812 Bytes
/
twelve_days.c
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
char *a[]={
"\n6 Geese a Lay›gŒ",
" day of Christmas\nmy˜rue l¡ s‘t˜o me:",
"\n2 Turtle D¡s\nand aˆ",
"\n9 Ladies Dancœ‰",
"\nŽ",
"\n4 Call B ds",
"\n10 LorLeapœƒ",
"\n7 Swan”Swimmž€",
"—artridge in a—ear Tree\n",
"\n8 MaiMilkœ‡",
"\n11’š’†",
"th",
"\n5 Gold‘ Rs…",
"\n3 Fr™ch H™s‚",
"On˜he ",
" Drumm",
"d”",
"™",
"—ip",
"ev‘‹",
"s a ",
"„s",
"„t",
" P",
" t",
"en",
"ers",
"in",
"ž",
"Ÿ",
"Ÿ",
"ing",
"ir",
"ove"
};
char*b="Žf st\nAˆ•econd‚–h "
"d„four‹…„fif‹Œ•i"
"x‹€•“‡„eigh‹‰„n›"
"‹ƒ–‘‹†„el“Š–welf"
"‹\n12š›gŠ";
pr(char*s)
{
for(;*s;s++)
if(*s&128)
pr(a[*s&127]);
else putchar(*s);
}
main()
{
pr(b);
}