Posts from C++

C++ program to demonstrate Finite Automata

By Vivek Kumar Jaiswal

Hello everyone! In this tutorial, we are going to discuss Finite Automata in C++. An Automata can be also called as a computing device. An Automata is called a Finite Automata when.... Read More

How to create an abstract class in C++

By Arpit Jain

Hi guys, today we will learn about abstract classes, pure virtual functions, and how to create an abstract class in C++ language. Before moving to the code, let us define some impo.... Read More

How to call function from another file in C++

By Siddhant Chouhan

In this tutorial, you will learn how to call a function from another file in C++. When we work on big projects the lines of code can become huge. What happens is that if we put all.... Read More

Addition of two numbers in base 14 in C++

By Karun Thannickal

In this tutorial, we will look at how to add two numbers represented in base 14 in C++. The number system that we see the most in our daily lives is the base 10 or ‘decimal&#.... Read More

Print a string N number of times in C++

By Karandeep Singh

Hey, guys today we are going to learn how to print a string N number of times in C++. We can print a string N number of times with the help of iteration statements also known as lo.... Read More

Word Break Problem in C++

By Arpit Jain

Hi guys, today we will try to solve Word Break Problem in C++. It is one of the most asked problems in placement interviews. I would recommend you to please study the topic recurs.... Read More

Singleton in C++

By NIVEDITA KUMARI

In this tutorial, we will learn about Singleton in C++. In C++ Singleton pattern is a design pattern that puts a limit on a class to instantiate its multiple objects. The ‘Si.... Read More

Static Const Member Variable in C++

By Prabhnoor Singh

In this article, we will be learning about the static const member variable in C++ which is a combination of const which is a type qualifier and static which is a storage specifier.... Read More