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