write a program using function to compute area of the following and return the value from the function (a). area of square=side*side,
joshikc2007:
nope i need java only
Answers
Answered by
2
Answer:
#include <stdio.h>
int main()
{
int s=13;
int area_square=s*s;
printf("Area of the square=%d",area_square);
}
Similar questions