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 while statement and a do statement?
What is the difference between a while statement and a do statement?
✍: Guest
A while statement checks at the beginning of a loop to see whether the next loop iteration should occur. A do statement checks at the end of a loop to see whether the next iteration of a loop should occur. The do statement will always execute the body of a loop at least once.
2012-12-07, 2256👍, 0💬
Popular Posts:
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
Do You Know the Book "JUnit in Action"? You should know this book. It received some good reviews. Ti...
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``i...
What is the difference between include directive & jsp:include action? Difference between includ...
What is a measure in OLAP ? Measures are the key performance indicator that you want to evaluate. To...