fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. //we don't need stack for this shit
  5. //NO push
  6. static int a1, a2, a3, a4, a5;
  7. {
  8. //NO push
  9. static int b1, b2, b3, b4;
  10. {
  11. //NO push
  12. static int c1, c2, c3;
  13. //and it still works. Because we don't have any recursion here
  14. int a=(a1+a2)+a3+(b1+c1);
  15. }
  16. }
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2108KB
stdin
Standard input is empty
stdout
Standard output is empty