write a c program to find square root of a given number using a data type square.
Answers
Answered by
1
Explanation:
square is not a data type . you can use math header file in your program and use the sqrt function
#include <math.h>
int main(){
printf("%lf",sqrt(16));
return 0;
}
Similar questions