what are difference between c and c++?

Answer Posted / jaz

C++ is not an object based language. It is an object
oriented language. An object based language + Inheritance +
polymorphism makes a language object oriented.

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the rules for naming an identifier?

549


If a function doesn’t return a value, how do you declare the function?

604


Explain mutable storage class specifier.

618


How to declare a pointer to an array of integers?

635


What is ctime c++?

566






What is a class definition?

607


When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?

561


Explain the uses oof nested class?

617


A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a saleperson who sells $5000 worth of merchandise in a week receives $200 plus 9 percent of $5000, or a total of $650. You have been supplied with a list of items sold by each salesperson. The values of these items are as follows: Item Value A 239.99 B 129.75 C 99.95 D 350.89 Write a program that inputs one salesperson's items sold in a week (how many of item A? of item B? etc.) and calculates and displays that salesperson's earnings for that week.

3401


Describe the process of creation and destruction of a derived class object?

634


What are the various access specifiers in c++?

592


Which programming language is best to learn first?

571


If there are two catch statements, one for base and one for derived, which should come first?

565


What's the most powerful programming language?

579


What is the difference between function overloading and operator overloading?

565