Computer Science, asked by nachclarks, 4 months ago

Write a program to compute the area of a rectangle.

Answers

Answered by xXBrandedQueenXx
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 TheEnchanted
4

\bf\huge{\underline{\red{\mathbb{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