You are on page 1of 1

Program to find the area of a square.

#include<stdio.h>
#include<conio.h>
main()
{
int a,b;
scanf("%d",&a);
b=a*a;
printf("%d",b);
getch();
}

You might also like