Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Anything wrong with this code? T *p = 0; delete p;
Anything wrong with this code? T *p = 0; delete p; Yes, the program will crash in an attempt to delete a null pointer. 2012-03-05, 4810👍, 0💬
What problems might the following macro bring to the application?
What problems might the following macro bring to the application? #define sq(x) x*x 2012-03-02, 3028👍, 0💬
What is a scope resolution operator?
What is a scope resolution operator? A scope resolution operator (::), can be used to define the member functions of a class outside the class. 2012-02-23, 2999👍, 0💬
What is abstraction? C++
What is abstraction? C++ Abstraction is of the process of hiding unwanted details from the user. 2012-02-22, 3138👍, 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, 3173👍, 0💬
What do you mean by binding of data and functions?
What do you mean by binding of data and functions? Encapsulation. 2012-02-16, 3084👍, 0💬
Popular Posts:
I have 5 questions please give me the answer ,explanation,suggestions if any?? what is PMP(project m...
What is XSLT? XSLT is a rule based language used to transform XML documents in to other file formats...
How do you target a specific frame from a hyperlink? Include the name of the frame in the target att...
How is the MVC design pattern used in Struts framework? In the MVS design pattern, there 3 component...
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and exten...