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
Why #include is used?
What is abstraction with real time example?
What will happen if a pointer is deleted twice?
What are 2 ways of exporting a function from a dll?
What are the advantages of using a pointer?
What is the use of volatile variable?
What is a wchar_t in c++?
Can we use struct in c++?
What sorting algorithm does c++ use?
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).
What are activex and ole?
What is java and c++?
What is a local variable?
If a function doesn’t return a value, how do you declare the function?
What is c++ & why it is used?