-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathone-byte-helloworld.c
77 lines (63 loc) · 1.56 KB
/
one-byte-helloworld.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <stdio.h>
int main(int argc, char const *argv[])
{
char byte = 0x0;
// 01001000 - 0x48 - H
byte = byte | 1 << 3;
byte = byte | 1 << 6;
printf("%c", byte);
// 01100101 - 0x65 - e
byte = byte & 1 << 6;
byte = byte | 1;
byte = byte | 1 << 2;
byte = byte | 1 << 5;
printf("%c", byte);
// 01101100 - 0x6c - l
byte = byte & ~(1);
byte = byte | 1 << 3;
printf("%c%c", byte, byte);
// 01101111 - 0x6f - o
byte = byte | 1;
byte = byte | 1 << 1;
printf("%c", byte);
// 00100000 - 0x20 - space
byte = byte & 1 << 5;
printf("%c", byte);
// 01110111 - 0x77 - w
byte = byte | 1;
byte = byte | 1 << 1;
byte = byte | 1 << 2;
byte = byte | 1 << 4;
byte = byte | 1 << 6;
printf("%c", byte);
// 01101111 - 0x6f - o
byte = byte & ~(1 << 4);
byte = byte | 1 << 3;
printf("%c", byte);
// 01110010 - 0x72 - r
byte = byte & ~(1);
byte = byte & ~(1 << 2);
byte = byte & ~(1 << 3);
byte = byte | 1 << 4;
printf("%c", byte);
// 01101100 - 0x6c - l
byte = byte & ~(1 << 1);
byte = byte | 1 << 2;
byte = byte | 1 << 3;
byte = byte & ~(1 << 4);
printf("%c", byte);
// 01100100 - 0x64 - d
byte = byte & ~(1 << 3);
printf("%c", byte);
// 00100001 - 0x21 - !
byte = byte & ~(1 << 6);
byte = byte & ~(1 << 2);
byte = byte | 1;
printf("%c", byte);
// 00001010 - 0x0a - \n
byte = byte ^ byte;
byte = byte | 1 << 1;
byte = byte | 1 << 3;
printf("%c", byte);
return 0;
}