program explaining feautures of c++
No Answer is Posted For this Question
Be the First to Post Answer
What kind of problems can be solved by a namespace?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
Give an example of run-time polymorphism/virtual functions.
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
What information can an exception contain?
Write any small program that will compile in "C" but not in "C++"
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
Define a constructor?
What is a mutable member?
How do you write a function that can reverse a linked-list?
Why is main an int?