Skip to main content
Write a program to find Area of Square in C Language - Program to Area of Square in C - Program to Area of Square
Program to Area of Square in C

#include<stdio.h>
int main()
{
int side, area;
printf("Enter the Length of Side = ");
scanf("%d", &side);
area = side * side;
printf("\nArea of Square : %d\n", area);
return (0);
}इस कोड को हमने CODEBLOCK पर बना कर run किया है
The Area of the Square is
Comments
Post a Comment