why use for c++ language
On: October 31, 2012 Posted in Engineering Questions Comments: 1 Views: 53 c++ why use for c++ language Engineering Questions
1.Stronger Type Checking – the use of classes, inheritance & automatic type
conversions mostly eliminates the need for the abominable void* of C.
2: Type safe linkage – you can’t accidentally call a routine from another
module with the
wrong type and/or number of arguments – even if your header files get out of
date.
3: A complex data type is provided. It includes all the standard arithmetic
operations, implemented as operators, not function calls.
4: User-defined operators and function overloading are supported. When you
design a data type you can specify which operators & functions are pr