C Program to Find Area of Rectangle
In this example, We are going to find Area of Rectangle in C. The formula for calculating Area of any Rectangle is- area = a * b where a and is sides of rectangle program to find area of rectangle…
In this example, We are going to find Area of Rectangle in C. The formula for calculating Area of any Rectangle is- area = a * b where a and is sides of rectangle program to find area of rectangle…
In this example, We are going to find area of circle. So firstly we should know formula for calculating Area of any Circle; Circle Area is the multiplication of square of radius and PI . Where PI is a constant…
In this example, We will understand how to find Area of Triangle. 1. Area of Right Angled Triangle We know the formula for area of right angled triangle is area = (p * b)/2 where p = perpendicular and b=…
c program to add two numbers In this example, We will learn how to add two numbers in c language. Here we are going to explain c program to add two numbers in 2 easy to understand examples. addition of…
C Language Tutorial In this tutorial we are going to explain a complete course on C Language. This is a free online c programming course. If you are a beginner and want to learn C. You can learn C programming…
Transmission modes tells that in which direction data is travelling. Means by knowing the transmission mode we can understand data transfer unidirectional or bidirectional. It is also known as communication modes. There are three types of Transmission modes 1. Simplex…
Dictionary functions in python with examples There are various types of Dictionary functions in python with examples dictionary. #1 len() Dictionary functions in python len() is used to find length of dictionary. d = { ‘Name’ : ‘Deepak’, ‘city’ :…
How to traverse a dictionary in python Traversing means Iterating a Python dictionary. we can traverse a dictionary in python with for loop. Example 1 :- d = { 1 : ‘One’, 2 : ‘Two’, 3 : ‘Three’, 4 :…
How to create python dictionary we can create python dictionary in four ways. 1. Empty dictionary We can create an empty dictionary. In an empty dictionary, there is no key or value. Only we have to declare a dictionary variable…
What is Dictionary in python A Dictionary in python is a key-value pair, similar to a List. But A dictionary consists of key-value pairs, Each key maps to its associate value. In other words, A Dictionary is the same as…