difference between c and c++?
Answer Posted / manish jangid
C++ is the hight level language, but C is low level
language.
C++ can support of all function of C, but C can't support
of all function of C++.
We can work with Class in C++, But we can't work with Class
in C
C++ is a object oriented language but C is not OOPS
C is the Top to bottom , but C++ is bottom to Top language.
Is This Answer Correct ? | 110 Yes | 54 No |
Post New Answer View All Answers
Explain the static storage classes in c++.
What is the most useful programming language?
What is a tree in c++?
What is virtual table?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
What is virtual base class?
Explain the term memory alignment?
What are the basics of local (auto) objects?
Do class declarations end with a semicolon? Do class method definitions?
Explain the volatile and mutable keywords.
Can user-defined object be declared as static data member of another class?
What are the differences between malloc() and calloc()?
Explain deep copy?
What are references in c++? What is a local reference?
Why is it necessary to use a reference in the argument to the copy constructor?