Program to find Square September 11, 2019 Get link Facebook X Pinterest Email Other Apps // 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
Comments
Post a Comment