if, else,else-if, switch are the conditional statements in C++. The looping keywords are for, while, and do-while loops. In this
Category: Technology
Technology related category
C++ Tutorial for Beginners: An Overview
In this article, I will present a tutorial on C++ for beginners. I have started this new series on C++
Try a new C++ program yourself
I am sharing a Repl.it a C++ shell here so that you can run your programs and have fun coding!! Feel
A Simple Introduction to Git
This short read is meant to give you a quick introduction to Git and, hopefully, motivate you to learn more
C# Tutorial for beginners: An Overview
I have started this new series on C#. In this article, I will give you an overview of the tutorial.
An Introduction to C# collections
I will give you an introduction to C# collections we often use in various applications. Collections will give you the
Arrays, multi-dimensional and Jagged arrays in C#
We use arrays when we want to store multiple values of the same type under a single variable name. The
C# if, else if, else, switch, for, and while loops
We learned about the reference types in the previous article. Before I have another tutorial on arrays, string builders, and
Class, interface, delegates, dynamic, object, string in C#
Reference types store the reference, unlike the value type. The value types store the value directly. The reference variables store
C# value types – Enum, struct, and Nullable value type
C# defines 3 other value types called enum, struct and nullable types. I will define them and give relevant examples