Posts by Meghana Thatikonda

Author Biographical Info: LinkedIn: https://www.linkedin.com/in/meghana-thatikonda/

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

Variadic function templates in C++ with example

By Meghana Thatikonda

In this tutorial, we will learn what are variadic function templates, its syntax and how to implement it using an example in C++. Variadic function templates in C++ Templates that .... Read More

How to prevent object copy in C++

By Meghana Thatikonda

In this tutorial, we will learn how to prevent object copy in C++. This can be done in 3 ways and we shall implement each of these. Making the access specifier of Copy constructor .... Read More

Add two numbers without using Arithmetic Operators in C++

By Meghana Thatikonda

In this tutorial, we will learn how to add two numbers without using any arithmetic operators along with its implementation in C++. Add two numbers without using Arithmetic Operato.... Read More

Time Conversion from 12-hour to 24-hour format in Python

By Meghana Thatikonda

In this tutorial, given time in 12-hour format as input we will learn how to perform time conversion into the 24-hour format and output it using Python.   #Taking 12h clock ti.... Read More

Listing all files and sub-directories within a directory in C++

By Meghana Thatikonda

In this tutorial, we are going to learn how to get all the contents i.e., names of files and sub-directories within a given directory. And we are going to implement it using C++. I.... Read More

Virtual Base Class in C++ with an Example

By Meghana Thatikonda

In this tutorial, we will learn what is a virtual base class in C++. We will also see an example of how to implement it using C++. Virtual base class in C++ In an inheritance hiera.... Read More

How to Find and List All Running Processes in Python

By Meghana Thatikonda

In this tutorial, we are going to learn how to find and list all running processes in Python. It is a very simple program. Python program to find and list all running processes To .... Read More

Related Posts