Posts by Ranjeet V

Author Biographical Info: Not available

Faker Library in Python

By Ranjeet V

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

atexit() function in C++

By Ranjeet V

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

std::fill() and std::fill_n() functions in C++

By Ranjeet V

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

struct module in Python and its functions

By Ranjeet V

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

How to execute a string of code in Python

By Ranjeet V

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

Type inference in C++

By Ranjeet V

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

Reverse each word in a sentence in Python

By Ranjeet V

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++ isinf() function | check if given argument infinite

By Ranjeet V

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

Related Posts