Convert RGB to Hex color code in C++

By Arjun Singh

We are going to code for conversion of RGB i.e red green blue color code to hex code in C++. RGB to Hex color code in C++ RGB i.e. red, green and blue each contain 8 bits each with.... Read More

Human detection in webcam in JavaScript with ml5.js

By Faruque Ahamed Mollick

In this article, I am going to introduce you to a human detection project in JavaScript for the browser which is using ml5.js, a JavaScript library on top of TensorFlow.js. It can .... Read More

tellp() and tellg() in File Handling in C++

By Aayush Kumaria

Hey guys, In this tutorial, you will understand what tellp() and tellg() functions are and how they work in C++. So as I explained in my last tutorial (Tutorial: File Handling in C.... Read More

Randomising a Vector in C++

By Paaritosh Sujit

In this article, we will attempt to create a vector having random values inside of it, where the length of the vector will be given through user input. In easy words, we will rando.... Read More

How to play a part of an MP3 file in C++

By Ranjeet V

This tutorial is about how to play a part of an MP3 file in C++. We can write a program in C++ that would play an mp3 audio file using the mciSendString() function. Let’s und.... Read More

Python program to calculate GST

By Sachin Rastogi

In this article, we are going to calculate the GST (Goods and Services Tax) in Python. For calculating GST we need to understand that what is GST? What does GST stands for? GST:- .... Read More

Divide all elements of an array with a given number in C++

By Arjun Singh

Hello, guys, today blog is to divide all the elements of an array with a given number in C++. Each element is to divide with a given provided number and updated in an array after d.... Read More

Convert RGB to hex color code in Python

By Sachin Rastogi

In this article, we are going to learn about how to convert RGB to hex color code in python. This article is mainly for the conversion of RGB to hex color code but we will also see.... Read More

Related Posts