Monday, September 29th, 2008
Image Source:theopensourcery.com
Flow control and iteration are two useful features in most programming languages. Without them, programs would be linear.Flow control means exactly what it sounds like. Control the flow. When using flow control, you are regulating the ...
Posted in Information | No Comments »
Sunday, August 10th, 2008
Image Source: www.pragprog.com
Did you know that looping statements doesn’t loop the whole if-else statement if you put an if-else statement in the looping statement? That’s right. Looping statements only goes through the if-else statements once. Once the looping statement activates the statements inside the if-else statement, the looping statement will ...
Posted in Advanced Programming, Basic Programming, Information, Sample Code | No Comments »