Python program to calculate arc length of an angle

By Prakash Raj

In this session, we are going to learn how to calculate the arc length of an angle in Python. Find out the arc length of an angle in python Arc length: Arc length is defined as the.... Read More

Find sum of each row and column of a matrix in C++

By Alok Singh

Hello, In this tutorial, we will learn how to calculate the sum of each row and column of a matrix in C++ programming language. Let’s take an example to understand it in a be.... Read More

PHP if Statement

By Sanketh

Hey Guys, In this PHP tutorial, we are going to discuss if statement in PHP. And how we will use this statement in PHP. Before going to know about if statement lets discuss conditi.... Read More

Check if a number is an Armstrong number or not in C++

By Raj Gaurav

hello everyone, In this tutorial, we learn about How to check if a number is an Armstrong number or not, with the help of c++. before we start, let’s know about what is Armst.... Read More

Find a Sub-string in a given String in C++

By Samrat Malisetti

In this tutorial, we will learn how to find a Sub-string in a given String using C++. Finding a Sub-string in C++ is very much easy if you follow the below steps. This program prin.... Read More

How to Comment in Python within code?

By Snehil

To enhance the readability of any complex code, comments are added to the code. These lines do not affect the program and are added to explain the code. Comments also help other us.... Read More

How to Turn OFF or Turn ON all bits in C++

By Bhupen Pal

As the title of this blog suggests we are going to learn how to Turn OFF/ON all the bits of particular number in C++ using the Bitwise Not Operator. Turning OFF/ON bits means to ta.... Read More

C++ Pre-Processors

By Astha Awasthi

In this C++ tutorial, we are going to discuss the preprocessors, its types and its implementation. Have you thought what happens between writing a program and its compilation? Let .... Read More

Related Posts