Computer Science, asked by bhardwajpranjal2013, 5 months ago

Write a program to find area of a rectangle whose length and breadth is entered by the user.
Correct answer will be marked as brainliest.

Answers

Answered by abbashabbirtinwala
1

Answer:

C Program

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

printf("Area of the rectangle=%d",area);

}

Explanation:

if is this answer was helpful then please mark me has brainlist and follow me

Answered by sahil4074
1

area of a triangle is length multiplied by breadth

Similar questions