Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the main difference between c and c++?

Answer Posted / vivek sagar jaiswal

*c is the procedure oriented programing.
c++ is the object oriented programing.

*c is the low level language.
c++ is the high level language.

*c is top-down approach
c++ is bottom-top approach.

*c is structured design
c++ is object oriented design .

*c does not deal with real world problems properly
eg. Maintaining a database.
while c++ deals with real world problems.

*In c we declare variable at the start of block...
In c++ we can declare it any where.....

*c the data can pass through the fuction to fuction.
Data is hidden and can’t be accessed by the external function.

*We can’t work with Class in C .
We can work with Class in C++ .
*c is not required acces
specifiers .
C++ is required acces
Specifiers .

*c has not inheritance concept .
c++ has inheritance concept .

*C can't support
of all function of C++.
C++ can support of all function of C

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

2178


What does and I oop mean in text?

1316


What is multilevel inheritance in oop?

1089


What is difference between polymorphism and inheritance?

1132


What is the difference between inheritance and polymorphism?

1166


What language is oop?

1075


Why do we use polymorphism?

1129


What does sksksk mean in text slang?

2180


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6731


What is the importance of oop?

1145


Describe these concepts: Polymorphism, Inheritance and Abstraction.

1247


What are classes oop?

1091


What exactly is polymorphism?

1182


What is oops and why we use oops?

1095


This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.

2172