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
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What is c++ mutable?
What is meant by const_cast?
Write a program to find the Factorial of a number
Is c++ still being used?
What is an iterator?
State two differences between C and C++.
Why do we use pointers in c++?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
Why cstdlib is used in c++?
Why do we need runtime polymorphism in c++?
What are the 4 types of library?
Can you write a function similar to printf()?
What is the difference between set and map in c++?
How do you declare A pointer to a function which receives nothing and returns nothing