what is the main difference between c and c++?
Answer Posted / j.balaji
C is oldest programming language.but c++ is the advanced version of C.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you inherit a private class?
What is polymorphism and its types?
What are the types of abstraction?
What are different oops concepts?
Can a varargs method be overloaded?
What are the benefits of polymorphism?
What is the important feature of inheritance?
write string class as your own class in java without using any built-in function
What is destructor in 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 property in oops?
write a programe to calculate the simple intrest and compund intrest using by function overlading
Which language is pure oop?
What is destructor example?
to find out the minimum of two integer number of two different classes using friend function