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 the arrow operator in c++?
What is the best c++ compiler for windows 10?
How compile and run c++ program in turbo c++?
What are the 3 levels of programming languages?
What is the full form of dos?
Can comments be longer than one line?
What are the rules about using an underscore in a c++ identifier?
How to get the current position of the file pointer?
Describe protected access specifiers?
Are strings immutable in c++?
Is there any difference between int [] a and int a [] in c++?
Define whitespace in C++.
What are activex and ole?
What is c++ namespace?
What do the keywords volatile and mean mutable?