Source Code:
(back to article)
<?php // Calculate the square root of a number using the sqrt() function $result = sqrt(16); // Output the result echo $result; ?>
Result:
Report an issue