Is there something that we can do in C and not in C++?

Answers were Sorted based on User's Feedback



Is there something that we can do in C and not in C++?..

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

Is there something that we can do in C and not in C++?..

Answer / kiran.raikar

nothing

Is This Answer Correct ?    2 Yes 10 No

Is there something that we can do in C and not in C++?..

Answer / avni

we can use printf in c but not in c++

Is This Answer Correct ?    4 Yes 19 No

Is there something that we can do in C and not in C++?..

Answer / tajudeen

Pointers we can do it in c but not in c++

Is This Answer Correct ?    1 Yes 27 No

Post New Answer

More C++ General Interview Questions

Does c++ support exception handling?

0 Answers  


Differentiate between a template class and class template?

1 Answers  


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

0 Answers   Maxobiz,


Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?

0 Answers  


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.

4 Answers   Quark,


Why was c++ created?

0 Answers  


Who was the creator of c++?

0 Answers  


When should you use global variables?

0 Answers  


What do you mean by pure virtual functions in C++? Give an example?

1 Answers  


What is the use of register keyword with the variables?

0 Answers  


What is public, protected, private in c++?

0 Answers  


What is the purpose of template?

0 Answers  


Categories