fork download
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3.  
  4. int main(void) {
  5.  
  6. bool warunek = true;
  7.  
  8. while(warunek){
  9. while(warunek){
  10. while(warunek){
  11. warunek = false;
  12. }
  13. }
  14. }
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2164KB
stdin
Standard input is empty
stdout
Standard output is empty