Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between a break statement and a continue statement?
What is the difference between a break statement and a continue statement?
✍: Guest
A break statement results in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current loop iteration and return control to the loop statement.
2012-10-26, 2438👍, 0💬
Popular Posts:
How To Create an Add-to-Bloglines Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News...
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...