difference between c and c++?
Answer Posted / kasi
1)C is procedure oriented programming & c++ is object
oriented programming.
2}c gives importance to procedure that is functions rather
than data.
c++ is object oriented language and gives importance to
object that is data .
3)c is middle level language.
c++ is high level language
4)c is structured design,c++ is object oriented design
5)c is top-down approach,c++ is bottom-top approach
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are keywords in c++?
How can I learn dev c++ programming?
What does std :: flush do?
Please explain the reference variable in c++?
What will happen if a pointer is deleted twice?
What is object file? How can you access object file?
What is an adaptor class in c++?
Name the implicit member functions of a class.
What is difference between array and vector in c++?
Why main function is special in c++?
What is the most useful programming language?
What's the best free c++ profiler for windows?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Can recursive program be written in C++?
What is while loops?