Answers for "math sqrt C"

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

Code answers related to "C"

Browse Popular Code Answers by Language