Posts by Ankita Khan
Author Biographical Info: Not available
In this tutorial, we will learn the difference between std::lock_guard and std::unique_lock in C++. Before proceeding to the differences, let us discuss the std::lock_guard and std.... Read More
In this tutorial, we will learn about scientific notations in Python. Before proceeding to the scientific notations in Python, let us understand the scientific notations in detail..... Read More
In this tutorial, we will learn about the naming conventions in C++. Before proceeding to the naming conventions of C++, let us understand the definition of a convention. The conve.... Read More
In this tutorial, we will learn about the C++ goto statement and its usage in detail. Before proceeding to its implementation, let us understand the key characteristics of the goto.... Read More
In this tutorial, we will learn about the C++ time() function with example. In C++, the standard library does not provide any particular data type for date and time. It generally i.... Read More
Learn the simplest way of how to add a prefix to each element in a list in C++ with this tutorial. Before dealing with this problem, let us learn about the terminologies used in th.... Read More
In this tutorial, we will learn how to perform multiplication of polynomials in C++. Before proceeding to the solution, let us understand what a polynomial is: A polynomial is an e.... Read More
In this tutorial, we will learn about splitlines() function in Python. splitlines() is a built-in function that splits any string based on its line boundaries. It accepts an option.... Read More