Write a program to find area of rectangle in c language
Answers
Answered by
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);
Answered by
0
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);
}
Similar questions