Well its not clear what kind of errors that you are looking at. Is it programming error or error during execution?
If its programming error then its basically deviation from the standard formats or definitions as defined in C.
Use the debugger to locate the error.
C++ object oriented programming (OOP) language and supports three kinds of object types 1) Fundamental Types. 2) Derived Types. 3) Class Types.
c is procedure oriented and c++ is object oriented & much newer.
same the types used in C. that is int...char...float...
Too many errors possible to say. Please elaborate.
Use the debugger to locate the error.
runtime error
In C/C++, this code int a = 5; return a+++++a; leads to error. However, writing int a = 5; return (a++ + ++a); returns 12. Note that in other languages "a=5; a+++++a" leads to different results :)
Use the Microsoft support website to locate the error message and the solution to the error.
There is no such thing as 'unix C++'.
No.
Yes
C++ object oriented programming (OOP) language and supports three kinds of object types 1) Fundamental Types. 2) Derived Types. 3) Class Types.
c is procedure oriented and c++ is object oriented & much newer.
same the types used in C. that is int...char...float...
Too many errors possible to say. Please elaborate.
Object-oriented programming is a feature in C++ that allows you to better model real-world objects. An object is an instance of a class, which is a data structure in C++ that allows you to group different, but related types of data together.