Ch1.1 – Visual Studio installation

Go to Visual Studio download page and download Community version of VS. https://visualstudio.microsoft.com/vs/pricing/?tab=individual Choose the languages/project type like the below screen. We will learn C++, PyThon and C#. Then, click Install button at the right-bottom corner.   VS will be installed. Once the installation is done, reboot your system to make sure all things are […]

Ch1.2 – Run Visual Studio

Launch Visual Studio first time from Start menu. You want to Pin to Start of Visual Studio. Now Visual Studio is located in Start menu. Once Visual Studio is launched, you will see the VS start screen. Let’s try to Create a new project. We will choose simple C++ project. Choose C++ Console App. Set […]

Ch1.3 – The first project – Hello World and a little more

Now you have a new project TestConsole01 and it’s auto-generated code. Basically this code will display “Hello World” on console window. Every program has a starting point. Sometimes it is called Entry Point of the program. The term Entry Point is used as a different meaning in server-client programing but it is fine to call […]

Ch2.1 C/C++ Basic

C and C++ programming language are very similar and you can think C++ is extended version of C language. If you learn about C/C++, you can extend your language to other languages since programming languages have similar stucture.   Statements   Operators   Functions