Answers for "c math sqrt function"

C++
1

c math sqrt function

#include <iostream>
#include <cmath>
using namespace std;

int main() {
  cout << "Square root of 25 = ";
   
  // print the square root of 25
  cout << sqrt(25);

  return 0;
}

// Output: Square root of 25 = 5
Posted by: Guest on October-09-2021
1

c sqrt

double sqrt(double arg);
Posted by: Guest on May-14-2020

Browse Popular Code Answers by Language