SW006014 Microchip Technology, SW006014 Datasheet - Page 106

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
DS51456E-page 102
getenv (Continued)
Example:
labs
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
#include <stdio.h>
#include <stdlib.h> /* for getenv
int main(void)
{
}
Output:
Cannot find environment variable INCLUDE
Calculates the absolute value of a long integer.
<stdlib.h>
long labs(long i);
i
Returns the absolute value of i.
A negative number is returned as positive; a positive number is
unchanged.
#include <stdio.h>
#include <stdlib.h> /* for labs
int main(void)
{
}
Output:
The absolute value of
The absolute value of -246834 is 246834
The absolute value of
char *incvar;
incvar = getenv("INCLUDE");
if (incvar != NULL)
else
long i;
i = 123456;
printf("The absolute value of %7ld is %6ld\n",
i = -246834;
printf("The absolute value of %7ld is %6ld\n",
i = 0;
printf("The absolute value of %7ld is %6ld\n",
printf("INCLUDE environment variable = %s\n",
printf("Cannot find environment variable "
i, labs(i));
i, labs(i));
i, labs(i));
incvar);
"INCLUDE ");
long integer value
/* for printf, NULL */
/* for printf */
123456 is 123456
0 is
© 2008 Microchip Technology Inc.
*/
0
*/

Related parts for SW006014