What is the Difference between "C structure" and "C++
structure"?
Answers were Sorted based on User's Feedback
Answer / asif iqbal
1.C is a procedural oriented lang. whereas C++ is an object oriented lang.
2.C employs bottom-up aproach whereas C++ employs top-down approach.
3.In C main preference is given to functions whereas in C++ main preference is given to objects.
4.In C no inheritence,polymorphism whereas in C++ it exists.
5.In C data member and member functions are separated whereas in C++ they are within a Class.
| Is This Answer Correct ? | 1 Yes | 8 No |
Answer / guest
C++ DOES NOT HAVE INHERITANCE IT DOSE NOT HAVE POINTERS N
HEADER FILES
| Is This Answer Correct ? | 7 Yes | 33 No |
What are the new features that iso/ansi c++ has added to original c++ specifications?
Does std endl flush?
Write a program using display() function which takes two arguments.
When the design recommends static functions?
What are the rules for naming an identifier?
Difference between overloaded functions and overridden functions
Difference between class and structure.
Which ide is best for c++?
If a function doesn’t return a value, how do you declare the function?
Difference between pointer to constant and constant pointer to a constant. Give example.
What are the operators in c++?
Difference between shift left and shift right?