Computer Science, asked by manoj99131, 5 months ago

What is the code in qbasic to calculate area of the rectangle

Answers

Answered by damak013404
1

Answer:

Program

#include <stdio.h>

int main()

{

int width=5;

int height=10;

int area=width*height;

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

}

Explanation:

please mark as brainlist and follow me

Similar questions