Posts

Showing posts from January, 2021

C++ Programming Map in your brain

Image
    Introduction to C++ Programming Language C++ is a general-purpose programming language that was developed as an enhancement of the C language to include object-oriented paradigm. It is an imperative and a compiled language. C++ is a middle-level language rendering it the advantage of programming low-level (drivers, kernels) and even higher-level applications (games, GUI, desktop apps etc.). The basic syntax and code structure of both C and C++ are the same Some of the features & key-points to note about the programming language are as follows: Simple : It is a simple language in the sense that programs can be broken down into logical units and parts, has a rich library support and a variety of data-types. Machine Independent but Platform Dependent : A C++ executable is not platform-independent (compiled programs on Linux won’t run on Windows), however they are machine independent. Mid-level language : It is a mid-level language as we can do both systems-programm