write a program to find the area of rectangular
Answer (1)
Hello there!
Greetings!
C program to find the area of a rectangle is provided below :-
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Thankyou
Greetings!
C program to find the area of a rectangle is provided below :-
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
Thankyou
Comments (0)