Area Of Square Example C Program
Definition
In classical times, the second power was described in terms of the area of a square, as in the above formula. This led to the use of the term square to mean raising to the second power. Thus the area of the square is twice the length of the square.
Area Of Square Formula
The area of a rectangle is written as,
A=s^2
here, A=Area s=side of the square
Area Of Square Example Program
/*##Area Of Square*/
/*##Calculation Programs, Datatype Programs, Basic Programs*/
#include<stdio.h>
#include<conio.h>
int main() {
int length, area;
printf("\nEnter the Length of Square : ");
scanf("%d", &length);
area = length * length;
printf("\nArea of Square : %d", area);
return 0;
}
Sample Output
Enter the Length of Square : 5
Area of Square : 25
Top Pages
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C