I appreciate your taking the time to provide these tutorials. I haven't programmed in C since the 80's, so this is helping knock off some of the rust.
Not to be trite, but in your next rev of the tutorial, you might want to correct the statement below (it's in your reply above as well as on page 5 of the tutorial) in that the brackets/parenthesis for the 'if((i==10)...' are unbalanced.
Thanks again,
MarkC.
Quote:
|
Originally Posted by codersguru
for(int i=0;i<15;i++)
{
if((i==10)
break;
Print(i);
}
|