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