DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex19.pp
12345678910
Program Example19; { Program to demonstrate the ldexp function. } Uses math; begin writeln(ldexp(2,4):8:4); writeln(ldexp(0.5,3):8:4); end.