C# Beginners – Using Rider

Introduction – C# Beginners – Using Rider C# Beginners – Using Rider: Rider is a full-fledged IDE from JetBrains. It is aimed at professional users. There is a student licence available for free. However, other users get a trial and then a paid subscription offer; there is no community version. Continue Reading

Python Beginners – Combine Everything

Python Beginners – Combine Everything; in this beginner’s series, we have covered print, taking input, selection, lists and looping and logic. Following on from these, this post is the finale, and we will look at some of the possibilities with the tools now at your disposal. These examples will combine Continue Reading

Python Beginners – Selection

Python Beginners – Selection; selection is another name for making a decision. All programming language decisions are based on true or false statements. This post focuses on the selection’s coding side; another post will detail binary logic. Let us start with a simple example program. This is the example in Continue Reading

C++ Beginners Guide – Loops and Iteration

Introduction – C++ Beginners Guide – Loops and Iteration C++ Beginners Guide – Loops and Iteration is a guide to using loops in C++. This article’s principles apply to all programming languages; however, the syntax will change between different languages. For Loop For loops start at one index value then Continue Reading

C++ Beginners – Fundamental Types

C++ Beginners – Fundamental Types covers the fundamental types in C++. Anyone coming from higher-level languages such as C#, #Java or many others will note that “string” is not a fundamental type in C++. The following are fundamental types. signed short unsigned short signed int unsigned int signed long unsigned Continue Reading

C++ Beginners – Hello World program

C++ Beginners Guide – Hello World, it has to be done, every programming guide everywhere starts with “Hello World” and so does almost every IDE available. An introduction to this guide Is available in C++ Beginners Guide Introduction. Breaking down the “hello world” program above. The first line includes the Continue Reading