What is c++ coding?
No Answer is Posted For this Question
Be the First to Post Answer
How do we implement inheritance in c++?
What is difference between class and structure in c++?
Why do we need runtime polymorphism in c++?
What do you mean by function and operator overloading in c++?
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;
Can a constructor be private?
Under what conditions is multiple inheritance not recommended?
What is vector string in c++?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
What is a unnitialised pointer?
What is c++ namespace?
Can we use clrscr in c++?