sample.c 482 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. int foo[x || y && z | w ^ q & e == r != t > y < u >= i <= o];
  2. int bar[o <= i >= u < y > t != r == e & q ^ w | z && y || x];
  3. int baz[a+b*c/d%f-e];
  4. int baz[b*c+a];
  5. int baz[!*&~-+a];
  6. int baz[(int)(long)a];
  7. float fn(int x, double y) {
  8. return x + y;
  9. }
  10. //long int bar;
  11. //struct baz {
  12. // float x;
  13. // const volatile long double y;
  14. // unsigned bf1 : 2;
  15. // unsigned bf2 : 7;
  16. //};
  17. /*
  18. struct foo {
  19. int bar;
  20. struct {
  21. float x;
  22. double y;
  23. };
  24. struct {
  25. int lol;
  26. } meh;
  27. };
  28. */