Program example sqrroot.c
printf("\n%s\n%s\n%s\n\n",
"The square root of x and x raised",
"to the x power will be computed.", "---");
while (1) { /* do it forever */
printf("\n%15s%22.15e\n%15s%22.15e\n%15s%22.15e\n\n",
"x = ", x, "sqrt(x) = ", sqrt(x), "pow(x,x) = ", pow(x, x));
else printf("\nSorry, your number must be nonpositive.\n\n");