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 a conversion constructor C++?
What is a conversion constructor C++? A constructor that accepts one argument of a different type. 2012-03-16, 3165👍, 0💬
How do you link a C++ program to C functions?
How do you link a C++ program to C functions? By using the extern "C" linkage specification around the C function declarations. 2012-03-12, 3144👍, 0💬
Popular Posts:
Advantages of a macro over a function? Macro gets to see the Compilation environment, so it can expa...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
What is Native Image Generator (Ngen.exe)? The Native Image Generator utility (Ngen.exe) allows you ...
Explain in detail the fundamental of connection pooling? When a connection is opened first time a co...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...