Computer Science, asked by sabinadocha375, 1 month ago

write a program to display the area of square ​

Answers

Answered by kingslint
0

Answer:

C Program

#include <stdio.h>

int main()

{

int s=13;

int area_square=s*s;

printf("Area of the square=%d",area_square);

}

Explanation:

Answered by Invincible1544
0

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);

}

Explanation:

Similar questions