Write a C program to find the value of square root of (x+2y).
Answers
Answered by
1
Explanation:
C program to find square root of a given number
Difficulty Level : Medium
Last Updated : 13 Apr, 2021
Given a number N, the task is to write a C program to find the square root of the given number N.
Examples:
Input: N = 12
Output: 3.464102
Input: N = 16
Output: 4
Similar questions