// Break statement #includeNote: Click on copy button to copy the given code and you can paste it in any online compiler to see the result, IF YOU ARE A MOBILE USER THEN DOWNLOAD "CODING C"(Free App) COMPILER FROM GOOGLE PLAY STORE.#include int main() { int i; clrscr(); for( i=1 ; i<=10 ; i++ ) { if(i == 5) { break; } printf( "%d\n\t\n", i ); } getch(); return 0; }