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