DEBSOURCES
Skip Quicknav
sources / gccintro / 1.0-5 / badpow.c
123456789
#include <stdio.h> int main (void) { double x = pow (2.0, 3.0); printf ("Two cubed is %f\n", x); return 0; }