Finding Area of a Square using C language

 #include<stdio.h>


int main() {

    float side;

    printf("Please Enter the side square : ");

    scanf("%f", &side);


    printf("Area of the square is : %f", side*side);

    return 0;

}    

My YouTube Channel ::

Thanks for visiting my Blog. Hopefully it helped you. Please check out more blogs for practice.
We will meet soon. bye. Jay Hind...

Comments

Popular posts from this blog

Exploring Pascal's Triangle in C: A Code Breakdown