Posts from C++

How to use dynamic_cast on vector in C++

By Harsha Sai

Hello Learners, today we are going to learn a very interesting and important topic that is dynamic_cast on vector using C++. It is one of the methods used for typecasting. The word.... Read More

Copy elision in C++

By Harsha Sai

Hello Learners, today we are going to learn a very interesting topic that is copy elision in C++. Copy elision is also known as return value optimization, almost all the compilers .... Read More

std::to_address in C++ with example

By Titichh Mishra

Hi there. Today we will see the working of the “to_address” method of STL library in C++. The purpose of this method is to get the address of a specific pointer without.... 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

Mortgage Calculator in C++

By Harsha Sai

Hello Learners, today we are going to learn a very interesting topic that is, mortgage calculator using C++. The main function of the mortgage calculator is used to calculate the m.... Read More

Function Arguments in C++

By Harsha Sai

Hello learners, today we are going to learn a very interesting and important concept that is function arguments in C ++. This particular concept is used in all the programming lang.... Read More

log2() function in C++ with examples

By Karandeep Singh

Hey, guys today we are going to learn about log2() function in C++. It is a mathematical function which returns the value of logarithmic base 2 value of the argument passed. Header.... Read More

C++ program to get Nth node in a Linked List

By Kamlendra Pratap Singh

In this tutorial, we are going to discuss how to get the Nth node in a singly linked list in C++. Let us have a look at the examples given below. Example: Input : 10->15->20-.... Read More

Related Posts