Posts from C++

Convert First letter of each word to uppercase in C++

By Yash Shakya

In this tutorial, we are going to learn how to convert the first letter of each word in a string to uppercase in C++. The format of the data required in various areas is different..... Read More

Count the number of occurrences of an element in a linked list in c++

By Sakshi Gupta

In this tutorial, we will learn how to count the number of occurrences of an element in a linked list in c++. For example If num=3. Then the output will be it occurs 2 times. If nu.... Read More

The fork() system call using C++ in Linux

By Yashas

In this tutorial, we will learn what fork() system call does and how it is implemented in Linux systems (only). There are some example questions to help you understand better. What.... Read More

Find out the Diameter of the Binary Tree in C++

By Zeeshan Alam

In this tutorial, we will learn how to find the diameter of a binary tree in C++. We will also see some examples to understand the concept in a better way. Diameter of binary tree .... Read More

How to get MAC address of a device in C++?

By Yogender Narayan

This tutorial demonstrates How to get MAC address of a device in C++. We are going to learn what is MAC? What are its usage and how to obtain it from the system? What is MAC Media .... Read More

How to convert a given number into words in C++

By Yogender Narayan

In this tutorial, we are going to learn to Convert a given number into words in C++. Example (123 to One Hundred Twenty Three). Introduction To perform this program we are going to.... Read More

To check if a number is a palindrome or not in C++

By Raj Gaurav

In this tutorial, we learn about How to check if a number is a palindrome number or not in C++. Before we start, let’s know about what is palindrome number or how can we say th.... Read More

Cycle Detection in a Directed Graph in C++

By Zeeshan Alam

In this tutorial, we will learn about Cycle Detection in a Directed Graph in C++. Basically, we will use the DFS traversal approach for detecting the cycle in a graph. We will also.... Read More

Related Posts