What is Object Oriented programming.what is the difference
between C++ and C?
Answer Posted / jai
C++ is oops becoz data structure is not scattared through
out the program.Data and member fucntion which operates on
data member are bind by a object.The functon which will
modify the particular data members of class are fixed.No
fucntion form outside will change it.In c, datastructure
are scattred through out the program and any fuction can
chnage their value and we have to trac that.In c++,data
member is bound to object and the member fucntion which
will change the data also bind by same object.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is insertion sorting?
Is map thread safe c++?
What does std mean in c++?
What's the order in which the local objects are destructed?
Why is c++ difficult?
Write some differences between an external iterator and an internal iterator?
Which software is best for programming?
What is srand c++?
What language does google use?
What is the difference between global int and static int declaration?
What is a volatile variable in c++?
Explain shallow copy?
Describe public access specifiers?
Is atoi safe?
How to allocate memory dynamically for a reference?