What about:
do{
//.....
// 100000 lines of code!
//.....
} while(i%10);
Of course you will not write that:
//.....
// 100000 lines of code!
//.....
while(i%10){
//.....
// 100000 lines of code!
//.....
}
And you will then be forced to use a do-while loop
God Bless it!!
Edit:
Or you will use procedures..