difference between c and c++?
Answer Posted / muhammad asim
1.C language is easy as compare to c++.Because in one side
c++ show inheritance so another side its show the
properties of encapslution which are the contrast or weaken
point to inheritance due to encapslution.
2.In C the function pass from one funtion to another
several times while in C++ the function is hidden through
some external function.
3.C is a procedural or structural oriented language uses
ups-down approch and focus on procedure rather than data
while C++ is an object-oriented language uses down-ups
approch and focus on data rather than procedure.
4.C language uses pointer concept while there is no concept
of pointer in C++.
5.C++ is a prototype or a strick typechecking where C is
free of such things, so most programmes which is compiled
by C compiler cannot be compiled by C++ compiler.
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
Explain virtual class?
What is an adjust field format flag?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
What are arithmetic operators?
What is abstract class in c++?
What are containers in c++?
What are the differences between java and c++?
What are c++ templates used for?
Can we define function inside main in c++?
What is the difference between a pointer and a link in c ++?
What are the various arithmetic operators in c++?
Is c better than c++?
What do you mean by “this” pointer?
Which programming language is best?
What do you mean by funtion prototype?