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