Write a program to enter length and breadth of a rectangle,calculate and print the area
Answers
Answered by
1
Answer:
follow me
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);
}
Answered by
0
Answer:
you can do it from google please follow me and mark my answer as brainliest...
Similar questions