Program to calculate Perimeter and Area of Rectangle in C Language

Perimeter-and-Area-of-Rectangle-program-in-C-language

Introduction:

This program is for Calculating the Perimeter and Area of a Rectangle in C programming Langauge.

most of us already know the formula’s to calculate the Perimeter and Area of the Rectangle.

Anyway, here are the formulas for Perimeter and Area.

Area of Rectangle Formula:

Area of Rectangle = b × h. 

Where b = breadth and h = Height

Perimeter of Rectangle Formula:

The Perimeter of Rectangle = 2(b) + 2(h)

Where b = breadth and h = Height

Calculate Perimeter and Area of Rectangle in C Program :

We are going to take the user input for the Length and Breadth values. We are considering the length and Breadth as the Float values, So you can give the float and integer values.

Once we got the user input, We are going to apply the above Area and Perimeter formulas to Calculate the results.

Finally, We are going to print the results onto the console.

Program Output:

Here is the output for the program for different Length and Breadth values.

C Tutorials:

Pattern Programs in C language:

Related Programs :

Venkatesh

Hi Guys, I am Venkatesh. I am a programmer and an Open Source enthusiast. I write about programming and technology on this blog.

You may also like...

1 Response

  1. […] C Program to calculate Perimeter and Area of Rectangle […]

Leave a Reply