AREA OF A SQUARE


#include<stdio.h>
#include<conio.h>
void main()
{
int r,s;
printf("Enter Value of Square");
scanf("%d",&r);
s=r*r;
printf("Result %d Square is %d",r,s);
getch();
}

0 comments: (+add yours?)

Post a Comment