write a program for finding the area of rectangle with the help of area () function
Answers
Answered by
1
Explanation:
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Similar questions
Social Sciences,
19 days ago
Biology,
19 days ago
CBSE BOARD XII,
19 days ago
Biology,
9 months ago
Social Sciences,
9 months ago