/*******************************************************************************
 * Jerod Weinman
 * SCI3825
 * Sample program that prints the sqrt of a number.
 * 28 August 2008
 ******************************************************************************/

#include <stdio.h>
#include <math.h>

/* Print a number and it's sqrt to stdout */
void printsqrt(double num)
{
     printf("The sqrt of %f is %f.\n",num, sqrt(num));
}

int main()
{
     printsqrt(16);
     return 0;
}

