Program Solution
#include<stdio.h>#include<conio.h>
void main()
{
clrscr();
int a,b;
printf("Enter two numbers ::");
printf("%d%d",&a,&b);
if(a*a==b)
printf("Second number is the square of first.");
else
printf("Its is not a square of first.");
getch();
}