what is the main difference between c and c++?
Answer Posted / sudhir
c++ high level language,c low level language.
c is the top to bottom,but c++ is bottom to top language.
c++ is object oriented language,c is procedure oriented
languagr.
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
#include
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What are the two different types of polymorphism?
How Do you Code Composition and Aggregation in C++ ?
Why is oop useful?
Why is destructor used?
can we make game by using c
What is interface? When and where is it used?
What is difference between multiple inheritance and multilevel inheritance?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
What is variable example?
What is oops and why we use oops?
What is abstraction in oop with example?
write a program that takes input in digits and display the result in words from 1 to 1000
Why is it so that we can have virtual constructors but we cannot have virtual destructors?