rectangle area calculator

PHOTO EMBED

Thu Jul 29 2021 08:52:36 GMT+0000 (Coordinated Universal Time)

Saved by @Aaryan #c

#include <stdio.h>
int main()
{
	int lenght,bredth;
	int end;
	printf("what is the lenght of the rectangle \n");
	scanf("%d",&lenght);
	printf("what is the bredth of rectangle \n");
    scanf("%d",&bredth);
    printf("area of rectangle = %d \n",lenght*bredth);
    printf("Programe By Aaryan \n");
    printf("press any key to proseed");
    scanf("%d",&end);
	return 0;
} 
content_copyCOPY