Program to find perimeter of square

             Program to find perimeter of square

Program- to- find -perimeter- of- square


#include<stdio.h>

int main()

{

    int l,b,P;

printf("enetr the value of length and bredth \n");

scanf("%d%d",&l,&b);

P=2*(l+b);

printf("the area is %d",P);

return 0;

}

Previous Post Next Post

Contact Form