RUN#include <stdio.h> #include <conio.h> void main() { int i=0; while ( i < 20 ) { printf("value of i is %d\n", i); i++; if ( i == 10) break; } getch(); }