
Trace how a C++ source code passes through preprocessor, compiler, assembler, and linker to become an executable binary, linking libraries when needed.
Explore C++ data types and variables, learn how a variable stores a single value in memory, and master naming rules with examples of int, float, double, char, and bool.
Discover how double precision uses eight bytes to provide a very high range. Show how doubles enable portable storage of huge values in C++, and preview modifiers.
learn how to use assignment operators in C and C++, including x = value, x += value, x -= value, x *= value, and x /= value to update variables.
Explore how if-else statements implement conditional logic in C++, executing a code block when conditions are true and an optional else block when false, using relational operators and user input.
Explore the concept of loops in programming with a focus on C++: use for, while, and do-while to execute repeated instructions, control conditions, and avoid infinite loops.
Learn how to implement a for loop in C++ to iterate numbers from a start value to an end value, print digits, and create more efficient code through practical examples.
Explore the do-while loop in C++ and learn why it executes at least once before checking the condition, with syntax and practical examples.
Learn how functions, or subprograms, encapsulate tasks in c++, including declaration, definition, formal (dummy) arguments, and function calls, and how return values transfer control to main.
Declare a simple function with no arguments and no return that prints 'hi' using cout, then call it from main to print hi twice as the program runs.
Explore recursion with a detailed tracing of function calls through an example, from main to helpers, backtracking from the base case to accumulate return values.
Explore pointers and addresses in C++, learn how a pointer stores a variable’s address, how the address-of and dereference operators work, and how copying addresses differs from copying values.
Explore how arrays are stored sequentially in memory, from starting addresses and element addresses to how the array name points to the first element, revealing pointer basics in C.
Explore how pointers passed as arguments enable call by reference, passing addresses to swap values and modify the original variables, and compare behavior inside a function versus in main.
In this course, C++ Programming from Scratch to Advanced, You'll learn everything to make you confident on C++ concepts.
The primary course objectives will be
1. Understanding the fundamentals of programming.
2. Analyzing the range of each and every datatype and understanding how they're stored in the memory.
3. Understanding how a C++ Program gets executed and converted into object code.
4. Implementing high level programming constructs in an easy manner in c++
5. Understanding the importance of addresses and pointers.
6. Knowing how to use pointers.
7. Understanding the significance of Objects, Classes and Inheritance and knowing how to implement them.
8. Understanding the differences between Access Modifiers and Data Modifiers and how they influence the classes and their data members.
9. Solving Interview Problems in C++ (NEW!)
Features:
1. The trickier concepts of C++ like Pointers, Inheritance, Pointer to an array, Pointer to a function, Multilevel Inheritance are clearly explained.
2. The course has video content from the scratch of programming. So, this suits even if someone is no exposed to any of the programming languages.
3. Solving some standard programming problems.
4. The concept of Recursion is clearly interpreted.
5. The concept of Bitwise Operators is explained by performing Decimal to Binary conversions.
6. The usage of constructors is explained.
7. Problem Solving in C++
Note: For all the lectures, the lecture notes and the source codes have been uploaded.