SW006014 Microchip Technology, SW006014 Datasheet - Page 181

C COMPILER MPLAB FOR PIC24 MCU

SW006014

Manufacturer Part Number
SW006014
Description
C COMPILER MPLAB FOR PIC24 MCU
Manufacturer
Microchip Technology
Type
MPLAB® C Compilerr
Series
PIC24r
Datasheet

Specifications of SW006014

Supported Families
PIC24
Core Architecture
PIC
Kit Contents
Software And Docs
Mcu Supported Families
PIC24
Tool Function
Compiler
Tool Type
Compiler
Processor Series
PIC24
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
© 2008 Microchip Technology Inc.
modff
Description:
Include:
Prototype:
Arguments:
Return Value:
Remarks:
Example:
Splits a single precision floating-point value into fractional and integer
parts.
<math.h>
float modff(float x, float *pint);
x
pint
Returns the signed fractional part and pint points to the integer part.
The absolute value of the fractional part is in the range of 0 (inclusive)
to 1 (exclusive). No domain or range error will occur.
#include <math.h>
#include <stdio.h> /* for printf */
int main(void)
{
}
Output:
For 0.707000 the fraction is 0.707000
For -15.212100 the fraction is -0.212100
float x,y,n;
x = 0.707F;
y = modff (x, &n);
printf("For %f the fraction is %f\n ", x, y);
printf("
x = -15.2121F;
y = modff (x, &n);
printf("For %f the fraction is %f\n ", x, y);
printf("
and the integer is 0
and the integer is -15
single precision floating-point value
pointer to stored integer part
and the integer is %0.f\n\n", n);
and the integer is %0.f\n\n", n);
/* for modff
*/
DS51456E-page 177

Related parts for SW006014