Computer Science, asked by VIVAANSINGHBISHT, 5 months ago

WAP to display the area of a rectangle. ​

Answers

Answered by Braɪnlyємρєяσя
2

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