What is difference c and c++?
Answer / priya
C does no support polymorphism, encapsulation, and inheritance which means that C does not support object oriented programming.
C++ supports polymorphism, encapsulation, and inheritance because it is an object oriented programming language.
C is a subset of C++.
C++ is a superset of C.
Is This Answer Correct ? | 0 Yes | 0 No |
Can I run c program in turbo c++?
What are pointers used for c++?
What compiler was used?
How to reduce a final size of executable?
Eplain extern keyword?
What jobs can you get with a c++ certification?
When does a 'this' pointer get created?
what is static function
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
What is slicing?