what is the main difference between c and c++?
Answer Posted / krushna priya nath
A function can be declared in C as int fun();. This means
that fun()is a function without any argument or any number
of arguments.But in C++, this means that the function with
no argument at all.
| Is This Answer Correct ? | 613 Yes | 267 No |
Post New Answer View All Answers
Why it is called runtime polymorphism?
What are the 4 pillars of oop?
Why do we use oop?
What is the important feature of inheritance?
Why do we use inheritance?
Explain the concepts involved in Object Oriented programming.
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
what are the ways in which a constructors can be called?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is encapsulation with real life example?
What is the difference between static polymorphism and dynamic polymorphism?
write knight tour problem which is present in datastructure
What is the renewal class?
What is abstraction oop?
Can a destructor be called directly?