Computer Science, asked by Aj6986, 3 months ago

Write a program to find area of rectangle in c language​

Answers

Answered by LoveLearning3012
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 PRIME11111
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