Ask your own question, for FREE!
Computer Science 18 Online
OpenStudy (rajeshkumar):

can some one give the exact def of difference between c and c++

OpenStudy (anonymous):

Krace u r an answering machine for this computer science section......from Were did u get this much know-how....

OpenStudy (anonymous):

@jithu1984:I am learning every day. . .I just share what i know,still a long way to go

OpenStudy (anonymous):

well , continue your good work.........

OpenStudy (anonymous):

@jithu1984:You are Biology answering machine :)

OpenStudy (anonymous):

C++ also has support for generic programming through the template system. You can use a single implementation with multiple data types: template <typename T> class MyVector { public: // interface, implementation private: size_t size; size_t capacity; T* data; // T can be of any type }; Templates in C++ are one the language's most powerful and most difficult to learn systems. To me, it's one of the two biggest differences between C and C++. The other biggest difference is automatic resource management through the object system. Krace's article above summarizes many of the other differences between the two languages. :)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!