C++ program to check if two arrays are equal or not

By Kunal Kamble

Hello, friends in this tutorial we will write a program to check if two arrays are equal or not in C++. An array is a collection of homogeneous i.e similar type of data stored in c.... Read More

Java program to find a pair with the greatest product in an array

By Nishtha Grover

In this tutorial, we will write a Java program to find a pair with the greatest product in an array using a Brute Force as well as a Time-Efficient Approach. Brute Force Approach F.... Read More

How to use Void pointer in C++?

By Gorakh Chavan

In this post, we are going to learn about void pointers and their use in C++. This post will help you to better understand the concept of a void pointer using C++. After that, we w.... Read More

How to use PAIRS within a SET in C++

By Meetali Tomer

In this tutorial, we will learn briefly about pairs and sets in C++ and then how to use pairs within a set. PAIRS IN C++ A pair in C++ is a container that stores two values which .... Read More

Complex Number Multiplication in C++

By Meetali Tomer

In this tutorial, we will learn complex number multiplication in C++. Complex Numbers Complex numbers are a combination of a (real part)  and b ( imaginary part ) written in the f.... Read More

Find median of an array using Quick Select Algorithm in Java

By Deepak Reddy

In this module, we are going to discuss find the median of an array using the quick-select algorithm in Java. The main aim of the quick-select algorithm is to find the kth smallest.... Read More

Find Number of sub-arrays having sum exactly equal to k in C++

By Palani M

In this tutorial, we will learn how to find the number of sub-arrays with a sum exactly equal to a given number in C++. We will not be discussing how to find one such sub array giv.... Read More

Inner Functions in Python

By Dipam Hazra

In this article, we will learn about the inner functions in Python. So, now let’s discuss what is the inner function? How does it work in python? We will discuss these whole .... Read More

Related Posts