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 mutable member? C++
What is a mutable member? C++ One that can be modified by the class even when the object of the class or the member function doing the modification is const. 2012-03-20, 3113👍, 0💬
What is an object? C++
What is an object? C++ Object is a software bundle of variables and related methods. Objects have state and behavior. 2012-02-08, 3111👍, 0💬
What are the differences between a C++ struct and C++ class?
What are the differences between a C++ struct and C++ class? The default member and base-class access specifiers are different. 2012-03-13, 3097👍, 0💬
Are there any new intrinsic (built-in) data types?
Are there any new intrinsic (built-in) data types? Yes. The ANSI committee added the bool intrinsic type and its true and false value keywords. 2012-03-23, 3092👍, 0💬
How do you traverse a Btree in Backward in-order?
How do you traverse a Btree in Backward in-order? Process the node in the right subtree Process the root Process the node in the left subtree 2012-01-20, 3090👍, 0💬
What are 2 ways of exporting a function from a DLL?
What are 2 ways of exporting a function from a DLL? 1.Taking a reference to the function from the DLL instance. 2. Using the DLL ’s Type Library 2012-02-17, 3087👍, 0💬
Popular Posts:
What is the difference between const char* p and char const* p? In const char* p, the character poin...
Explain all parts of a deployment diagram? Package: It logically groups element of a UML model. Node...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...
Can you explain in GSC and VAF in function points? In GSC (General System Characteristic) there are ...