What is C++?
C ++ is a powerful general-purpose programming language. It can be used to develop operating systems, browsers, games, and so on. C ++ supports different ways of programming like procedural, object-oriented, functional, and so on. This makes C++ powerful as well as flexible.
Our C ++ programming tutorial will guide you to learn C++ programming one step at a time.
C ++ gives programmers a high level of control over system resources and memory.
Why Use C ++?
By the help of C++ programming language, we can develop different types of secured and robust applications:
- Window application
- Client-Server application
- Device drivers
- Embedded firmware etc.
As C++ is close to C# and Java, it makes it easy for programmers to switch to C++ or vice versa.
C++ Standard Libraries
Standard C++ programming is divided into three important parts:
- The core library includes the data types, variables and literals, etc.
- The standard library includes the set of functions manipulating strings, files, etc.
- The Standard Template Library (STL) includes the set of methods manipulating a data structure.
C ++ Program
- #include <iostream>
- using namespace std;
- int main() {
- cout << “Hello C++ Programming”;
- return 0;
- }