What is the return value of the insertion operator?
No Answer is Posted For this Question
Be the First to Post Answer
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
Mention the ways in which parameterized can be invoked.
What are the differences between a struct in C and in C++?
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\"; } };
What is the difference between operator new and the new operator?
When does a name clash occur in c++?
What is the role of C++ shorthand's?
Give an example of run-time polymorphism/virtual functions.
Do inline functions improve performance?
How compile and run c++ program in turbo c++?
What is c++ stringstream?
There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?