1 2 3 4 5 6 7 8 9 10
#include <stdio.h> #include <math.h> int main() { float x = sqrt(4); printf("The square root of 4 is: %f", x); return 0; }