Value of square ( C PROGRAMMING )

 #include <stdio.h>


//value of square


int main () {
 
 int side ;
 printf (" enter side ");
 scanf (" %d", &side );

 printf (" sqaure is : %d " , side* side) ;

 return 0 ;

 







}

Comments

Popular posts from this blog

day 2 ( C PROGRAMMING )

Conditional Statements (C Programming)