What are the uses of typedef in a program?
No Answer is Posted For this Question
Be the First to Post Answer
What is ifstream c++?
When can you tell that a memory leak will occur?
the maximum length of a character constant can be a) 2 b) 1 c) 8
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
if i want cin 12345678910 and cout abcdefghij. so how can i create the program?. example : if i key in 8910 so the answer is ghij.
What would happen on forgetting [], while deallocating an array through new?
What is the size of a vector?
Explain polymorphism?
Explain abstraction.
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
Can you please explain the difference between static and dynamic binding of functions?
What is a breakpoint?