Posts by Meghana Thatikonda
Author Biographical Info: LinkedIn: https://www.linkedin.com/in/meghana-thatikonda/
In this tutorial, given a range of numbers, our task is to print neon numbers in that range. We will see this along with its implementation in Python. Understanding Neon Numbers We.... Read More
In this tutorial, we will see a simple example of inline function in C++. Inline functions in C++ Inline functions are treated differently by the compiler. So, they usually run mor.... Read More
In this tutorial, we will learn what are pointers and how to pass pointers to functions in C++. Pointers Pointer stores the address of another variable. Pointer has no data type. *.... Read More
In this tutorial, we will learn about template parameters and template arguments in C++ along with an example. Template in C++ Templates help us to write generic programs. Template.... Read More
In this tutorial, we will learn how to compute q-th percentile using NumPy percentile() method in Python. q-th percentile The q-th percentile gives a value below which q percentage.... Read More
In this tutorial, we will learn what a binary tree is, what is its height and also how to implement it using C++. A binary tree is a finite set of elements(can be empty) from which.... Read More
In this tutorial, we are going to learn what is an IP address, hostname and later we will learn how to get the IP address from the hostname for Windows in C++ program. Each device .... Read More
In this tutorial, we will learn about two important methods in Python. They are Python __setitem__ and __getitem__. We will also see how to use them with an example. Both __setitem.... Read More