-
Notifications
You must be signed in to change notification settings - Fork 0
/
nevaaar.c
55 lines (45 loc) · 997 Bytes
/
nevaaar.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
#import <stdbool.h>
struct You {
bool givenUp;
bool letDown;
bool ranAroundOn;
bool deserted;
bool crying;
bool bye;
bool liedTo;
bool hurt;
};
struct Me {
bool *giveYouUp;
bool *letYouDown;
bool *runAround;
bool *desertYou;
bool *makeYouCry;
bool *sayGoodbye;
bool *tellALie;
bool *hurtYou;
};
int main() {
struct You you;
struct Me me;
me.giveYouUp = &you.givenUp;
me.letYouDown = &you.letDown;
me.runAround = &you.ranAroundOn;
me.desertYou = &you.deserted;
me.makeYouCry = &you.crying;
me.sayGoodbye = &you.bye;
me.tellALie = &you.liedTo;
me.hurtYou = &you.hurt;
while(true) {
me.giveYouUp = false;
me.giveYouUp = false;
me.letYouDown = false;
me.runAround = false;
me.hurtYou = false;
me.makeYouCry = false;
me.sayGoodbye = false;
me.tellALie = false;
me.hurtYou = false;
}
return 0;
}