English, asked by tisachitrakar123, 6 hours ago

. Write a program to find the area of a rectangle for the given inputs of length and breadth

Answers

Answered by anudeepthipanda2011
1

Answer:

Make me as brain list

Explanation:

C Program

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

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

}

Answered by abdulraseed9993
2

Answer:

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

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

}

Similar questions