Latest C Aptitude Question SOLUTION: #include void main() { int i; for(i=0;i<10;i++) { if(i<5) continue; else break; printf("%d",i); } }