C Program to Find Area of Square

 #include<stdio.h>

void main()

{

    int a;

    printf("Enter side: ");

    scanf("%d",&a);

    printf("Area = %d",a*a);

}

Comments

Popular posts from this blog

Single Program Using All Automatic String Functions

C program for subtraction of two matrices (2D Arrays)

C program for Multiplication of Two matrices