C++

Enumeration in C++

In this tutorial, we are going to learn about the concept of Enumeration, or enum, which is a datatype, and an interesting concept. We will see an example, which demonstrates the concept so that it becomes easy to understand for you, and you will be comfortable using the concept in your C++ programs. Enumeration in […]

Enumeration in C++ Read More »

C++ Keywords

In this tutorial, we are going to learn about keywords in C++. This is a very important concept to be understood at the beginning itself because, in many programs ahead, we are going to use different keywords for different purposes. We will see different keywords in C++, so that we can later use them, in

C++ Keywords Read More »

Identifiers in C++

In this tutorial, we are going to learn about identifiers in C++. We will see some examples so that you can understand the concept of identifiers, and later on, you would have no problem in naming classes, variables, functions, etc. Identifiers in C++ What are Identifiers in C++? Identifiers are just the names that we

Identifiers in C++ Read More »

Comments in cpp

In this tutorial, we are going to learn about Comments in C++. We will go through some simple examples, to understand the use and the need for comments. Comments in cpp What are the comments in C++? The comments in the C++ program are the lines that are written to explain something, some description about

Comments in cpp Read More »

CPP syntax

In this tutorial, we are going to learn about the syntax of a C++ program. Basically, you can consider syntax as some set of rules, which we need to follow or write, while we are writing our C++ programs. We will understand this with help of a simple and basic C++ program, which would be

CPP syntax Read More »

Data Types in cpp

In this tutorial, we are going to learn about Datatypes in C++. Datatypes are an important concept to learn and understand in C++. In programming, we often deal with some kind of information in our programs, like name, age, address, salary, etc. for any kind of purpose. So, since we have different data like we

Data Types in cpp Read More »