difference between c and c++?
Answer Posted / satish kumar sinha
*c is the procedure oriented programing.
*c++ is the object oriented programing.
*c give the important on the procedure istade of data.
*c++ give the important on the data.
*c the data can pass through the fuction to fuction.
*c++ the data is hide in the fuction and the data is stolen
through the external function.
*c is the low level language.
*c++ is the high level language.
*c++ havig extra benifits data can hide in the fuction
(encapsulation),polymorphism,templets,file
handeling,inharitance.
Is This Answer Correct ? | 54 Yes | 13 No |
Post New Answer View All Answers
Can we specify variable field width in a scanf() format string? If possible how?
What is functions syntax in c++?
What are the various situations where a copy constructor is invoked?
Is c++ fully object oriented?
explain the reference variable in c++?
Is map sorted c++?
How do you show the declaration of a virtual constructor?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
What is c++ namespace?
What is bubble sort c++?
What is a container class? What are the types of container classes in c++?
Define whitespace in C++.
What is the best c++ ide?
Is it possible to have a recursive inline function in c++?
Do vectors start at 0 c++?