fork download
  1. #include <stdio.h>
  2.  
  3. int main () {
  4.  
  5. /* local variable definition */
  6. int a = 10;
  7.  
  8. /* while loop execution */
  9. while( a < 20 ) {
  10. printf("value of a: %d\n", a);
  11. a++;
  12. }
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19