#include <stdio.h> #include <math.h> /* needed by sqrt() */ int main(void) { double answer; answer = sqrt(20.0); printf("%f", answer); return 0; }