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, 2384👍, 0💬
Popular Posts:
How to make elements invisible? Change the "visibility" attribute of the style object associated wit...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
What does XmlValidatingReader class do? XmlTextReader class does not validate the contents of an XML...
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...
What are some advantages and disadvantages of Java Sockets? Advantages of Java Sockets: Sockets are ...