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:
.Write a short code using C++ to print out all odd number from 1 to 100 using a for loop
Write a short code using C++ to print out all odd number from 1 to 100 using a for loop
for( unsigned int i = 1; i < = 100; i++ )
if( i & 0x00000001 )
cout << i<<",";
✍: Guest
2012-04-18, 3079👍, 0💬
Popular Posts:
What is the value of this expression? +1-2*3/4 -0.5
1. The basics first, please define the web in simple language? How is it connected with internet? Wh...
How To Control White Spaces between Table Cells? - XHTML 1.0 Tutorials - Understanding Tables and Ta...
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expec...
Explain all parts of a deployment diagram? Package: It logically groups element of a UML model. Node...