Education

Input & Output Devices

Program to find Square


//  Program to find Square


#include<stdio.h>
#include<conio.h>
main();
{
int n,Square;
clrscr();
printf("Enter Number:");
scanf("%d",&n);
Square=n*n;
printf("\n Square: %d ",Square);
getch();
}

Comments