mix 415 B

12345678910111213141516171819202122232425262728293031323334
  1. int test() {
  2. if(false) {
  3. return 5;
  4. }
  5. return 4;
  6. }
  7. int* wusi(int* a, int t) {
  8. return a;
  9. }
  10. void main() {
  11. int a = 5;
  12. int b = 6;
  13. int* c = &a;
  14. if(a + b < 20 && a > 3) {
  15. test(1);
  16. }
  17. test(*c);
  18. test((&a)[0]);
  19. test(*&*&a);
  20. a = *&a;
  21. a = test();
  22. a = - - - 3;
  23. (*wusi(c, a++))++;
  24. (*wusi(c, a++))++;
  25. int h = ~~3;
  26. }