How to add a delay to code execution in Swift

By Shubhodh Amaravadi

In this tutorial, we will learn how to add a delay to code execution in Swift language. While developing any application in Swift, we mostly need our code to delay the execution pr.... Read More

Generate RGBA Portable Graphic Image in C++

By NIVEDITA KUMARI

In this tutorial, we will learn how to generate an RGBA portable graphic image in C++. RGBA stands for Red, Green, Blue, Alpha. It is three passage RGB color model and the fourth p.... Read More

Delete last element from a set in C++

By NIVEDITA KUMARI

In this tutorial, we will learn how to delete the last element from a Set in C++. First, let me introduce to you what are Sets. A Set is an associative container(a group of the cla.... Read More

Loan Calculator in Python using Tkinter

By Sarbajit De

Here we are going to discuss creating a loan calculator in Python using Tkinter. Before moving in further let’s first understand what is Tkinter. Tkinter is a standard yet po.... Read More

Declare a 2D array in C++ using new operator

By Raghav Khandelwal

In this tutorial, we are going to learn how to declare a 2D array in C++ using new operator. To begin with, first, let’s understand what are multidimensional arrays. In simpl.... Read More

Least Astonishment and the Mutable Default Argument in Python

By Varsha Neelamma

Python, as you may have observed is an easy and user-friendly language. However, sometimes you may come across tricky behavior in the language that may surprise you. One such behav.... Read More

How to Remove all the elements from an array having a specific value in C++

By Gagan Gupta

In this tutorial, we will learn how to remove all the elements from an array having a specific value. Removing all the elements from an array having a specific value in C++ In the .... Read More

C++ program to calculate simple interest and compound interest

By Joyeeta Choubey

In this tutorial, we will learn how we can calculate simple interest and compound interest using the C++ program. So let’s know what simple interest and compound interest are.... Read More