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 |
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
What is helper in c++?
Why we use #include conio h in c++?
Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??
Implement a 2 dimensional array by one dimentional array
What are raw sockets, where they are efficient?
What is the header file for setw?
What is meaning of in c++?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
Why do we need c++?
What is the use of register keyword with the variables?
What are the advantages of using const reference arguments in a function?