What will be the output of the given program? #include<iostream.h> void main ( ) { int a=1; for(;;) { cout<< a++; if(a>10) break; } }
Reveal answer
Fill a bubble to check yourself
What will be the output of the given program? #include<iostream.h> void main ( ) { int a=1; for(;;) { cout<< a++; if(a>10) break; } }