Posts by Mahak Chawla

Author Biographical Info: Not available

Get the last element from a vector in C++

By Mahak Chawla

In this tutorial, we will learn how to access the last element from a vector in C++. In C++, we can get the last element of the vector by using the following two methods: Using siz.... Read More

Extract negative numbers from array in C++

By Mahak Chawla

In this tutorial, we will learn how to extract negative numbers from an array. An array can consist of positive as well as negative numbers. We will use the if-else statement to co.... Read More