square of the number

 // square of the given number

#include<stdio.h>

int main()

{

    int i,sqN,n;

    printf("enter the number:");

    scanf("%d",&n);

    sqN=n*n;

    printf("the square of given number is %d",sqN);

    

}

Comments

Popular posts from this blog

Use of function in mathematics

My resume using HTML and CSS