qbasic program to find area of rectangle
Answers
Answered by
1
C Program
1) #include
2) int main()
3) {
4) int width=5;
5) int height=10;
6) int area=width*height;
7) printf("Area of the rectangle=%d",area);
8) }
Please mark me as brianliest
1) #include
2) int main()
3) {
4) int width=5;
5) int height=10;
6) int area=width*height;
7) printf("Area of the rectangle=%d",area);
8) }
Please mark me as brianliest
Answered by
2
Answer:
2*(l+b)
Explanation:
Similar questions