fork download
  1. #include <stdio.h>
  2. int main(){
  3. int n=0;
  4. while(n>0)
  5. {
  6. n=n+1;
  7. }
  8. printf("%d\n",n);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
0