calculate the area of rectangle in C
Write a C program to to calculate the area of rectangle in C. Let's Go.
Source Code:
Code
// C Program to calculate the AREA of rectangle #includeint main() { int height, width, area; printf("Enter the height: "); scanf("%d", &height); printf("Enter the width: "); scanf("%d", &width); area = height * width; printf("Area: %d", area); return 0; }
