What are the two types of comments?
No Answer is Posted For this Question
Be the First to Post Answer
Write about the role of c++ in the tradeoff of safety vs. Usability?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
Is it possible to use a new for the reallocation of pointers ?
when can we use copy constructor?
How would you obtain segment and offset addresses from a far address of a memory location?
Why do we need c++?
Differentiate between an external iterator and an internal iterator?
What is the use of ‘using’ declaration?
What is the header file for setw?
What is the C-style character string?
What do you mean by stack unwinding in c++?
What is the difference between const and constexpr?