Posts from C++

Actual purpose of int& foo() in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will discuss the actual purpose of int& foo() in a C++ program. int& foo() in C++ In C++ int& foo() declares a function having a fun.... Read More

#include vs #include “filename” in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will discuss the difference between #include <filename> and #include “filename” in a C++ program. Let’s understand what .... Read More

Change date format in C++

By Sanam Sahoo

Hello, Coders! In this section, we will learn about various date formats and how to change them in C++. Date Formats Type There are various types of date formats that we can use in.... Read More

How to print emoji in C++ console

By Vishnu Chand

Hey learners, welcome to the tutorial on how to print the emojis on c++ console. In this tutorial, we would print some of the known emojis by using do..while loop and switch case. .... Read More

How to merge unsorted arrays and sort them in C++

By Vishnu Chand

Hello learners, In this tutorial, we will deal with the merging and sorting concepts of C++. This topic is very interesting and is very useful in the IT industry. So, without laggi.... Read More

How to install C++ on Linux – Step by Step Guide

By Sanam Sahoo

Linux is an excellent platform for programming in various languages, as it provides a handy and coding-friendly environment. In this C++ tutorial, we will discuss how to install th.... Read More

How to uninstall C++ on Linux

By Sanam Sahoo

Hello, Coders! In this C++ tutorial, we will discuss the steps to uninstall the C++ setup from a Linux system. Before dive into the main topic, let’s briefly discuss what doe.... Read More

How to add space after dot(.) or comma(,) in C++ strings

By Vishnu Chand

Hey learners, let us learn a new concept based on strings and that is how to add a space after a dot(.) or comma(,) in a string in C++. This can also clear the concept of how to ad.... Read More

Related Posts