What is cin clear () in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Where is atoi defined?
List the advantages of inheritance.
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
What is a breakpoint?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What is the best c++ compiler?
Can char be a number c++?
What is a manipulator in c++?
What is pointer to member?
explain the reference variable in c++?
Definition of class?