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