Posts by Meghana Thatikonda

Author Biographical Info: Not available

Find index/position of element in vector in C++

By Meghana Thatikonda

In this tutorial, we are going to learn how to find the index or position of an element in the vector with its implementation in C++. Vectors are like dynamic arrays. They can gro.... Read More

Union in C++ with examples

By Meghana Thatikonda

In this tutorial, we will learn what is a union in C++ and its use when compared with structure. We will understand it using a few examples in C++. Union in C++ A union is a user-d.... Read More

Mirror of a string in C++ (Reversal of string)

By Meghana Thatikonda

In this tutorial, we will learn how to get the mirror of a string i.e., reversing a string along with its implementation in C++. Mirror of a string Mirroring a string means finding.... Read More

How to Print Staircase Pattern in C++

By Meghana Thatikonda

In this article, we are going to see how to print the staircase pattern in C++. For doing this, we will use the concept of nested loops. Example of Staircase Pattern Consider the h.... Read More

Count the Number of Divisors of n occurring within n in C++

By Meghana Thatikonda

In this tutorial, we will learn how to count the number of divisors of a number where that divisor is a digit of the number. Also, we will see its implementation in C++. Divisor An.... Read More

Barrier Objects in Python with Example

By Meghana Thatikonda

In this tutorial, we will learn what are barrier objects and how to create them in Python. We will also see an example of how to use them in Python. Barrier Objects in Python Barri.... Read More

Priority Queue of Pairs in C++ with an example

By Meghana Thatikonda

In this tutorial, we will learn about the priority queue of pairs in C++. We will understand this along with a suitable example. Priority Queue of pairs A priority queue is an abst.... Read More

Python Closures with Example

By Meghana Thatikonda

In this article, we are going to learn about Python closures and how to implement them with an example. To understand closures we need to first understand nested functions and non-.... Read More