Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What does break and continue statements do?
What does break and continue statements do?
✍: Guest
Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.
2011-08-16, 3365👍, 0💬
Popular Posts:
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
Describe different elements in Static Chart diagrams ? Package: - It logically groups element of a U...
Why is there extra white space before or after tables? This is often caused by invalid HTML syntax. ...
What will be printed as the resultof the operation below: int x; int modifyvalue() { return(x+=10); ...
Write out a function that prints out all the permutations of a string. For example, abc would give y...