Ok so everything I have read has defined a semicolon as just an ending statement. But it's obvious that it has more power to it then just that.
Could somebody give an simple explaination on what exactly it means and why I am putting it after everything?
Just a few days ago someone told not to use a : after a while conditional, they said that:
was equavilent to:Code:while (conditional);
Code:while (conditional)
{
;
}
Now while I partially understood this I also didn't understand it at all. Could someone elucidate on that? Thank you before-hand.

