write a program to display the area of a square using function
Answers
Answered by
4
Answer:
Program :
int main() { int side, area;
printf("\nEnter the Length of Side : "); scanf("%d", &side);
area = side * side; printf("\nArea of Square : %d", area);
MARK AS BRAINLIEST
Similar questions