Introduction
In this lab, you will learn how to write a C++ program to display a given string backwards. There are multiple approaches to reverse a given string in C++. We will explore two different methods: using a custom reverse function that we will build ourselves, and using the inbuilt reverse
function in C++.