How to create a random string in C++?

By Muskan Agarwal

Here we see how to create a random string in C++ using predefined functions. The solution basically comprises of usage of rand() and srand() functions under <bits/stdc++.h>he.... Read More

Reverse words in a given string in Python

By Asma Khan

In this tutorial, we will learn how to reverse words of a string given by the user in python. Before getting on to the actual code, let us learn some string methods. split() method.... Read More

Mutable keyword in C++

By Darshna Patil

Hi everybody! today we are going to learn about Mutable keyword in C++. As we know that in C++, a keyword is a reserved word which has a specified meaning. There are several keywor.... Read More

Python GUI-tkinter

By Rohith Immadisetty

In this tutorial, you are going to learn how to create GUI applications in Python. You’ll also learn about all the elements needed to develop GUI apps in Python. Graphical Us.... Read More

Python Program to Add all the digits of given number

By Rohith Immadisetty

In this tutorial, we are going to learn how to add all digits of given number in Python. So let’s get started. Adding all digits of a number in Python To add all digits of gi.... Read More

Python Modules

By Snehil

In this article, we are about to learn all about Python Modules. Python Modules is nothing but a file which contains all theĀ  Python statements and definitions as well. Every pyth.... Read More

Color Detection using OpenCV in Python

By Shaileshkumar Mishra

This article will help in color detection in Python using OpenCV through both videos and saved images. So let’s start learning how to detect color using OpenCV in Python. Fir.... Read More

check if a given matrix is sparse or not in C++

By Alok Singh

In this tutorial, we will learn how to check if a matrix is sparse or not in C++, with an example, algorithm, and a C++ program. A sparse matrix is a matrix of m row and n column i.... Read More

Related Posts