Posts from C++

Use of strncat() in C++ with examples

By YANNAM SATYA AMRUTHA

In this discussion, let’s clearly understand the primary purpose of the strncat() function in C++ and in which scenarios we are going to use it, with some examples. strncat().... Read More

Searching in fork() in C++

By Himanshu Baranwal

In this tutorial, we will discuss the searching in the fork() in C++. The fork() function in C++ programming language is a system call that creates a new process, called child proc.... Read More

How to generate random boolean values in C++

By HARI HARAN B

Generating random Boolean values can be achieved by random number-generating algorithms. These values are used in many probability simulations and cryptography algorithms. rand() f.... Read More

How to remove odd frequency characters from a string in C++

By Harsha Sai

Hello Learners, today we are going to learn how to remove odd frequency characters from a string in C++. Before learning the session everyone must be clear with the concept of stri.... Read More

Final Specifier in C++

By Harsha Sai

Hello Learners, today we are going to learn a very interesting topic that is: How to use the keyword final in C++ and its functions. The main function of using the final keyword is.... Read More

How to check if an array is empty or not in C++

By HARI HARAN B

The standard library contains a plethora of powerful containers and the std::array<> is one among them. The array container has several functions and one of them is the empty.... Read More

Differences between exit and kill in C++

By YANNAM SATYA AMRUTHA

In this discussion, we will be discussing the difference between kill and exit in C++. Firstly, let’s talk about what kill and exit are and what functions they perform. exit .... Read More

Reading and writing binary file in C++

By Prajwal Khairnar

This tutorial gives the description as well as the steps for programmers to learn how reading and writing binary file in C++ works. The process is simple and is divided into two ma.... Read More

Related Posts