aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test4.c
blob: 4a127d0acb943dd8179412d917ff5b5fc4bdf299 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
int xor(int a) {
   return a ^ 3 | 233333;
}

int cmp(float x, float y) {
   return x < y && x > 0.f;
}

int main() {
   int x = 42,
       *a = &x,
       **b = &a,
       ***c = &b,
       ****d = &c,
       *****e = &d,
       ******f = &e;
   return ******f;
}