#include <stdio.h>

int width, height, area;

void main()
{
printf("This program is to calculate the area of a rectangle.\n");
scanf("%d %d", %width, &height);
area = width * height;
printf("Width = %d, Height = %, Area = %d\n", width, height, area);
}

+ Recent posts