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