Computer Science, asked by udit2265, 1 month ago

write a program for finding the area of rectangle with the help of area () function

Answers

Answered by 039638
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