what is the main difference between c and c++?
Answer Posted / irfan khan
c is not object oriented but c++ is object oriented
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
what is the sylabus for priliminaries?
What is the purpose of enum?
Why is polymorphism important in oop?
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 3 pillars of oop?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is overloading and its types?
What is polymorphism explain?
Can enum be null?
What is difference between pop and oop?
Why is polymorphism needed?
What are the 4 main oop principles?
hi all..i want to know oops concepts clearly can any1 explain??
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What is the importance of oop?