What is the code in qbasic to calculate area of the rectangle
Answers
Answered by
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