Who discovered c++?
No Answer is Posted For this Question
Be the First to Post Answer
what are Access specifiers in C++ class? What are the types?
Brief explaination about #include<iostream.h>, cin and cout
Implement a 2 dimensional array by one dimentional array
write a function signature with various number of parameters.
Differentiate between the message and method?
Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
What is an action class?
What are the various storage classes in C++?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
Explain storage qualifiers in c++.
Describe private, protected and public?