fork download
  1. #include <stdio.h>
  2. int i = 5;
  3. while(i < 20) {
  4. printf("%d : Go for loop programming\n", i);
  5. i += 5;
  6. }
Success #stdin #stdout 0.03s 26088KB
stdin
Standard input is empty
stdout
#include <stdio.h>
int i = 5;
while(i < 20) {
    printf("%d : Go for loop programming\n", i);
    i += 5;
}