top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

C Program to Calculate Area of Square?

+1 vote
305 views
C Program to Calculate Area of Square?
posted Dec 2, 2014 by Vinitha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes
 
Best answer
#include<stdio.h>

int main() {
   int side, area;

   printf("\nEnter the Length of Side : ");
   scanf("%d", &side);

   area = side * side;
   printf("\nArea of Square : %d", area);

   return (0);
}

Output :

Enter the Length of Side : 5
Area of Square : 25
answer Dec 2, 2014 by Shivaranjini
...