//C program to demonstrate the
//area and perimeter of rectangle
#include <stdio.h>
int main()
{
int l=90,b=678;
printf("Area of rectangle is :%d",l*b);
printf("\nPerimeter of rectangle is:%d",2*(l+b));
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: