Posts by Ranjeet V
Author Biographical Info: Not available
Faker Library in Python is used to generate fake data in our program. There are many methods defined in this library that we can use to produce a fake name, id, date, time, email, .... Read More
In this tutorial, we will learn about atexit() function in C++. This function is used to call a function that must be executed before the program terminates. Its working and usage .... Read More
Hello everyone, in this post we will learn about std::fill() and std::fill_n() functions in C++. These functions are used with vectors to fill values. Let’s discuss more on t.... Read More
In this tutorial, we are going to discuss the struct module in Python and its functions. This module is useful for the conversion between C struct and python values. We use a forma.... Read More
Hello everyone, in this tutorial, we will learn how to execute a string of code in Python. As input, we will give a string which will be a piece of Python code. Our aim is to execu.... Read More
In this tutorial, we are going to learn about type inference in C++. Type inference actually means automatic deduction of the type of the variable we are using. In C++, we have met.... Read More
This tutorial will teach you how to reverse each word in a sentence in Python. For example, if a sentence is “CodeSpeedy is great”, our output should be– “y.... Read More
C++ provides us with a built-in function isinf() that helps us determine whether a given argument is infinite or not. We will see some examples that explain the working of this fun.... Read More