#include <stdio.h> int main(void) { int i = 1; do { printf("Do While %d\n", i); i++; }while(i<=5); return 0;}
Standard input is empty
Do While 1 Do While 2 Do While 3 Do While 4 Do While 5
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!