View Single Post
  #4 (permalink)  
Old 04-27-2006, 09:57 PM
67-17454 67-17454 is offline
Senior Member
 
Join Date: Apr 2006
Location: Oregon
Posts: 112
67-17454 is on a distinguished road
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);
}
Reply With Quote