Posts from C++

Palindrome check for number or string in C++

By Yash Shakya

In this tutorial, we are going to work on palindrome check for a given number or string in C++. This is a very frequently asked question in different interviews and written exams t.... Read More

How to detect a loop in a linked list in C++

By Barshan Paul

How to detect a loop in a linked list in C++: This program will tell us how to detect a loop in a linked list in C++. Those of you who don’t know what is a linked list:  Sin.... Read More

Sort a linked list using recursion in C++

By Sakshi Gupta

In this tutorial, we will learn how to sort a linked list in C++ using recursion. A Linked list is a data structure. It is made up of nodes that are created using self-referential .... Read More

How to use “pow” function in C++

By Barshan Paul

In this context, we will learn how to use pow function in C++ to find the power of a given number to another given number. The function pow is a predefined function of the “M.... Read More

Command Line Arguments in C++

By Ranjeet V

Command-line arguments are the values that are passed in your C++ programs when they are executed. The purpose of using command line arguments is to control the execution of your p.... Read More

Detecting Which key is pressed and its ASCII value in C++

By Ranjeet V

This C++ tutorial is about how to detect which key is pressed on the keyboard and find its ASCII value. Well, this is a very interesting topic and it requires prior knowledge of AS.... Read More

How to create a multiplication table in C++

By Ranjeet V

This is a C++ tutorial where we will learn how to create a multiplication table. We will accomplish this using a for loop in C++, however you can use while or do while loop also. M.... Read More

Count the number of words in a string in C++

By Sakshi Gupta

In this tutorial, we will learn how to count the number of words in a string in C++. There can be various ways to do this. The following is a simple one. Given a string, words can .... Read More

Related Posts