C++ Mindset & Understanding

C++ Mindset & Understanding


Welcome to the 45-minute course for C++ from 0 to PROJECT ready. In this segment of the article which happens to be the first video & read, we will cover the basic syntax in C++.

To start with, you need to know what are the different types of syntaxes you will be learning in the next video & why they are in a particular order.

We will also start working on our very own PROJECT.
So not only will you finish a C++ course, but you will also have some experience.

  • Code structure.

    • Every code that will be written will have to follow certain patterns like
      • Proper header files
      • Proper functions
      • The main function
      • Proper declaration of variables
      • Proper logic

  • Respective Syntax

    • Input
    • Output
    • Loops
    • Manipulations
    • Storage
    • Others
Now, how are each of them useful? Let's take a look at a sample project idea.
Consider the banking management system.


The intricacies of a banking system are so huge that it would compel us to think out of the box and uniquely.

We will have to generate test cases and make them fool proof. We are not at all ready to code just yet.

To begin with, let's see what we need to do to have a successful banking system.

  1. We need to be able to accept user input for money transactions.
  2. We need to respond to their needs and requirements.
Let's start by seeing the syntax and code we need to build for this, in the next video.

Comments