Posts by Meghana Thatikonda
Author Biographical Info: LinkedIn: https://www.linkedin.com/in/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
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
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
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
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
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
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
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