what is the main difference between c and c++?
Answer Posted / parthipan
1.C is structured language.
2.C is top to bottom apporach.
3.C does not support data hiding ,so there is no security
for data
4.c++ is object oriended programming language
5.c++ is bottom to top apporach
6.we can divided the big program into small logical unit.so
we can create seperate object for each module.
7.In c++ the access specifier private,public,protected are
used to handle the data for more security.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What are the components of marker interface?
What is difference between pop and oop?
What is the difference between static polymorphism and dynamic polymorphism?
What is multilevel inheritance in oop?
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).
What are the 4 pillars of oop?
Plese get me a perfect C++ program for railway/airway reservation with all details.
write string class as your own class in java without using any built-in function
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
Why is abstraction used?
Why interface is used?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What are the important components of cohesion?
What is object in oops?