C and C++ Languages:
Download Visual Studio Code Compiler for windows 7/88/8.1/10
Download Mingw/ GCC
for c c++ language
The C programming language was originally developed for and implemented on the UNIX operating system by Dennis Ritchie. This makes it easier for a user to write programs but that will run without many (or any) changes on practically all machines.
The C language is often called a middle-level computer language as it combines the elements of high-level languages with the functionalism of assembly language. C programming allows the manipulation of bits, bytes, and addresses giving the programmer more control over exactly how the program will behave and more direct access to the mechanics of the underlying hardware.
C was created, influenced, and field-tested by working programmers. The result is that C gives the programmer what the programmer wants.
C++ is an enhanced version of the C language. C++ includes everything that’s part of C and adds support for object-oriented programming (OOPs).
If you just use C++ as a better C, you will not be using all of its power. Like any quality tool, C++ must be used the way it was designed to be used to exploit its richness. Some of the new features include encapsulation, inline function calls, overloading operators, inheritance, and polymorphism.
C++ Introduction
C++ Basics
-
-
-
- Features
- Installation
- cout, cin, and end
- Variable
- Data types
- Keywords
- Operators
- Identifiers
- Expression
-
-
Control statement
-
-
-
- If-else and its type
- Switch
- Loop
- Entry control
- Exit control
- Break statement
- Continue statement
- Goto statement
- Comment statement
-
-
Function
-
- Call by values and call by reference
- Recursion
- Storage classes
Array
-
- Simple array
- Multidimensional array
Pointer basic
-
- Pointers
- References
- Memory management
Object and Class
- Object-oriented program introduction and benefits and concept
- Object class
- Constructor
- Destructor
- Static
- Structure
- Enumeration
- Friend function
- Math function
Inheritance
Polymorphism
Abstraction
Namespace
Strings
Exception
- Exception handling
- Try/catch
- User-defined
Templates
Signal handling
File and Stream
- File and stream
- getline ()
int to string
STL (Standard Template Library)
- STL components
- Vector
- Deque
- List
- Set
- Stack
- Queue
- Priority queue
- Map
- Multimap
- Betset
- Algorithm
- And many moreIterators and their concept
After above can go through to C++11 and C++17.