DEBSOURCES
Skip Quicknav
sources / gccintro / 1.0-5 / calc.c
12345678910
#include <math.h> #include <stdio.h> int main (void) { double x = sqrt (2.0); printf ("The square root of 2.0 is %f\n", x); return 0; }