c program to find multiplication of same number

#include<stdio.h>
#include<conio.h>
void main()
{
int n,m;
clrscr();
printf("enter any number=");
scanf("%d",&n);
m=n*n;
printf("Product=");
printf("%d",m);
getch();
}


Comments