modf(3) redhat man page | unix.com

Man Page: modf

Operating Environment: redhat

Section: 3

MODF(3) 						     Linux Programmer's Manual							   MODF(3)

NAME
modf - extract signed integral and fractional values from floating-point number
SYNOPSIS
#include <math.h> double modf(double x, double *iptr);
DESCRIPTION
The modf() function breaks the argument x into an integral part and a fractional part, each of which has the same sign as x. The integral part is stored in iptr.
RETURN VALUE
The modf() function returns the fractional part of x.
CONFORMING TO
SVID 3, POSIX, BSD 4.3, ISO 9899
SEE ALSO
frexp(3), ldexp(3) 1993-06-06 MODF(3)
Related Man Pages
modff(3) - debian
modf(3) - centos
modf(3m) - sunos
modff(3m) - sunos
modfl(3m) - sunos
Similar Topics in the Unix Linux Community
Grep for a Number in a String
Executes scripts parallelly based on their success
Change the numbers
sed replace characters using a wildcard
ARGV how to use it?