program to find area of square in C

               Program to find area of square

program- to -find- area -of -square


#include<stdio.h>

int main()

{

    int l,A;

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

scanf("%d",&l);

A=l*l;

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

return 0;

}

Previous Post Next Post

Contact Form