Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 155 Bytes

Square.md

File metadata and controls

11 lines (11 loc) · 155 Bytes

#include<iostream.h> #include<conio.h> { clrscr(); void main() int n; cout<<"enter the no to find square"; cin>>n; cout<<"\nthe square is"<<n*n; getch() }