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