Computer Science, asked by dadhichraissa7839, 10 months ago

Compute the algorithm, flowchart and BASIC program to calculate the area of agriculture field of rectangle length 50m and width 30m.

Answers

Answered by Anonymous
0

Answer:

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

printf("Area of the rectangle=%d",area);

}

Similar questions