C++ Notes Important Links and Notes
C++ language is a direct descendant of C programming language with additional features such as type checking, object oriented programming, exception handling etc. You can call it a “better C”. It was developed by Bjarne Stroustrup. C++ is a general purpose language language, when I say general purpose it simply means that it is designed to be used for developing applications in a wide variety of domains.
-
C++ is fast
Easy to learn
A powerful programming language
Has many built-in functions and operators which can make complex programs easy
Can be compiled on a number of computer platforms
C++ is an object-oriented programming language.
Use of pointer makes it a much more powerful language.
Also largely used in many large-scale projects
In C++, whitespace refers to spaces, tabs and newlines. In some places in our code, whitespace is necessary whereas, in other places, it is just given to improve readability.
An identifier is the name of any user-defined element. There are some predefined reserved words in C++ which have their special meaning and thus cannot be used as identifiers. These words are called keywords.