Is there something that we can do in C and not in C++?
Answers were Sorted based on User's Feedback
Answer / vaishnavi
there are many concepts that can be used in c++ where c
cannot support those concepts.
The following are some of those type of concepts:-
1.function overloading
2.operator overloading
3.templates
4.polymorphism
5.inheritence
6.data encapsulation
7.function over-riding
8.virtual functions
9.constructors & destructors
10. exceptional handling.
Is This Answer Correct ? | 4 Yes | 10 No |
Does c++ support exception handling?
Differentiate between a template class and class template?
Problem 6: Area of a trapezoid can be calculated by the following formula: A=(b1 b2)×h2 where b1 and b2 are the parallel sides or the bases and h is length of height Write a C code of this program
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
Why was c++ created?
Who was the creator of c++?
When should you use global variables?
What do you mean by pure virtual functions in C++? Give an example?
What is the use of register keyword with the variables?
What is public, protected, private in c++?
What is the purpose of template?