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