what is the main difference between c and c++?
Answer Posted / sridivyapuvvada
C is object based language & C++ is object oriented
language.
C is top-bottom approach & C++ is bottom-top approach.
In C,we use PRINTF() ,SCANF() as standard input/output
functions & in C++,we can use COUT<< or CIN>> as standard
input/output function.
In C we are using #include<stdio.h> as header file, but
in C++ we are using #include<iostream.h> as header file.
C doesn't support operator overloading & C++ support
operator overloading.
C does not support the c++ programme but C++ support the C
program.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
explain sub-type and sub class? atleast u have differ it into 4 points?
What is and I oop mean?
What is object and example?
Can private class be inherited?
What causes polymorphism?
Why do we use polymorphism?
What do you mean by abstraction?
Why is there no multiple inheritance?
Why is oop better than procedural?
Why do we use polymorphism in oops?
What are the 5 oop principles?
Why do we use oop?
Write a c++ program to display pass and fail for three student using static member function
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
What are the 3 pillars of oop?