Programming Code (840)
Scripts_Markup Code (257)
code to set the main window's size
What is a cdata section in xml?
How to call JavaScript Function from Code-behind in asp.net?
Write a function that takes an unsorted integer array, and returns a three element subset whose sum is zero.
How can you print an address of a variable?
why nlogn is the lower limit of any sort algorithm?
what does mbln in mblnrects mean? my boolean?
how to create a search bar which access data from various websites and retrieves the data
Write a Program to truncate a given floating point value (e.g.16.25=16).
Why XSLT is important for XML?
What is XML DOM?
Code for Adding Scripting Support to an Application?
What output does this program generate as shown? Why? class A { A() { cout << "A::A()" << endl; } ~A() { cout << "A::~A()" << endl; throw "A::exception"; } }; class B { B() { cout << "B::B()" << endl; throw "B::exception"; } ~B() { cout << "B::~B()"; } }; int main(int, char**) { try { cout << "Entering try...catch block" << endl; A objectA; B objectB; cout << "Exiting try...catch block" << endl; } catch (char* ex) { cout << ex << endl; } return 0; }
What are the advantages of XML DOM Document?
can we pass variable in array to traverse it?