Computer Science, asked by harinireddy, 3 months ago

write a c program to find square root of a given number using a data type square.​

Answers

Answered by koyaprabhas1
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