What is overloading unary operator?
No Answer is Posted For this Question
Be the First to Post Answer
what is the size of this class class size { public: char data1; double d; int data2; char data3; double data4; short data5; }; please explain the padding for these double variables.
Define a conversion constructor?
In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
Write about the local class and mention its use?
Write about the retrieval of n number of objects during the process of delete[]p?
Can we have "Virtual Constructors"?
Define linked lists with the help of an example.
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
What are virtual functions and what is its use?
What are the comments in c++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is const in c++?