What are c++ stream classes?
No Answer is Posted For this Question
Be the First to Post Answer
Can we make copy constructor private in c++?
Out of fgets() and gets() which function is safe to use?
In how many ways we can initialize an int variable in C++?
Difference between inline functions and macros?
Discussion on error handling of C++ .
What is the type of 'this' pointer? When does it get created?
Explain the volatile and mutable keywords.
What is Name Decoration?
Tell me an example where stacks are useful?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
Why null pointer is used?