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 |
What is meant by forward referencing and when should it be used?
Can I make ios apps with c++?
What is a terminating character in c++?
What do you mean by global variables?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?
write a programming using for loop in c++ to generate diamond trangel?
What is a tuple c++?
What are static and dynamic type checking?
What does h mean in maths?
What is abstraction with real time example?
What is low level language in simple words?