top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

C Program to Calculate Area of Rectangle?

+1 vote
261 views
C Program to Calculate Area of Rectangle?
posted Dec 2, 2014 by Roshan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
#include<stdio.h>
#include<conio.h>

int main() {
   int length, breadth, area;

   printf("\nEnter the Length of Rectangle : ");
   scanf("%d", &length);

   printf("\nEnter the Breadth of Rectangle : ");
   scanf("%d", &breadth);

   area = length * breadth;
   printf("\nArea of Rectangle : %d", area);

   return (0);
}

Output :

Enter the Length of Rectangle  : 5
Enter the Breadth of Rectangle : 4
Area of Rectangle : 20
answer Dec 2, 2014 by Shivaranjini
...