difference between c and c++?
Answer Posted / asri
c is procedure oriented language and gives importance to
procedure that is functions rather than data.c is middle
level language.
c++ is object oriented language and gives importance to
object that is data
c++ is high level language
| Is This Answer Correct ? | 393 Yes | 36 No |
Post New Answer View All Answers
How java is different from c and c++?
What is a map in c++?
State two differences between C and C++.
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Can I learn c++ without knowing c?
What would happen on forgetting [], while deallocating an array through new?
How can virtual functions in c++ be implemented?
Is c++ map a hash table?
What is a linked list in c++?
What is a node class in c++?
What is const pointer and const reference?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
To what does “event-driven” refer?
What is conditions when using boolean operators?
Can we make any program in c++ without using any header file and what is the shortest program in c++.