find square of numbers

WAP to print square without using " * ".

\\C program to print square without using "*". #include<conio.h> int Squares(int n) { int square = 0, a…

Load More
That is All