
Set up your C++ development environment using Visual Studio Code, install the C/C++ extension, and write a first hello world program to learn basic syntax, headers, and comments.
Shows how the main function starts a C++ program, how compilation produces an executable, and how cout prints hello world to the monitor.
Explore data types and control statements in c++ by examining tokens such as keywords, variables, constants, and operators, including break, special characters, and newline and tab.
Demonstrates a C++ demo to compute a circle's area by inputting radius, using int radius, float area, and a 3.14 pi constant, with area = pi * radius * radius.
Explore control statements in c++, featuring if and switch statements that steer program flow with true and false branches, including nested and else-if conditions.
Explore iteration statements in C++, including for loops, while loops, and do-while loops. See how initialization, condition checks, and increments drive repeated execution until the condition becomes false.
Master multi-dimensional arrays in C++ by declaring and accessing two- and three-dimensional arrays with row and column indices, zero-based indexing, and for loops; explore string concepts with arrays and string objects.
Learn practical C++ string functions, including copying, concatenation, length, and comparison, using C-style strings and common string operations.
Declare and define a function to add two integers, specify the return type, explain scope and local variables, use a function prototype, and call it from main.
Explore classes in C++, a user defined data type that defines objects with attributes and methods and functions, illustrated by car and dog examples.
Explore operator overloading in C++, using complex numbers to demonstrate plus, minus, and negation, while noting operator precedence and which operators cannot be overloaded, including the ternary operator.
Learn how C++ inheritance lets a subclass derive properties and methods from a superclass, enabling code reuse and shared functions like capacity, apply brakes, and other vehicle features.
Learn how public, protected, and private inheritance control access to base class members in derived classes, showing how public members stay public while private members remain inaccessible.
Master hierarchical inheritance in C++ programming, with practical guidance suited for learners from beginner to expert.
Learn how to work with files in C++, including text and binary files, and how to open, read, write, and close them with stream classes.
Master reading and writing files in C++ using stream extraction and insertion operators, detect errors with eof, fail, and bad flags, and move file position to the beginning or end.
Master command line arguments in C++ by using argc and argv in the main function; pass any number of arguments from the terminal, with the program name counted.
This course covers C++ from very basic to more advanced features.
Concepts of C++ programming are made very simple and easy.
Every topic is covered in greater detail.
Every Topic is Explained with Real-life Examples.
C++ is one of the most popular languages in the world! It's used by over 4 million developers worldwide, and in the US the average salary of a C++ developer is over $100,000 a year!
The course is designed for those who don't have any prior knowledge about programming. It doesn't matter if you have never written any programs or you have no idea about programming... After this course, all of this will change. You will bust the myth that programming is a difficult thing only for the few!
After this course, you will be able to use the advanced components of the C++ language.
Why this course?
Practical, hands-on, and aimed at beginners who are keen on mastering C++, this course is designed to get students coding in C++ as quickly as possible, while also teaching the best tips, tricks, and theory behind the code.
Every section has challenges and exercises for students to confirm their knowledge and put their newly learned skills to the test.
What I will learn?
Basics - Datatypes and Variables
Operators and Expressions
Conditional Statements
Loops
Pointers
Functions
Function Overloading
Oops Concepts
Classes and Objects
Constructors
Destructors
Operator Overloading
Inheritance
Polymorphism
Abstract Classes
Function Overriding
Friend Members
Static Members
Inner Classes
Templates
Exception Handling
I/O Streams
STL
Lambda Expressions
Features on Modern C++ 11
Student Project