PCDIDE COMPILER Custom Computer Services Inc (CCS), PCDIDE COMPILER Datasheet - Page 311

PCD C-COMPILER PIC24, DSPIC

PCDIDE COMPILER

Manufacturer Part Number
PCDIDE COMPILER
Description
PCD C-COMPILER PIC24, DSPIC
Manufacturer
Custom Computer Services Inc (CCS)
Type
Compilerr
Datasheet

Specifications of PCDIDE COMPILER

For Use With/related Products
Microchip PIC24/dsPIC®
Lead Free Status / RoHS Status
Not applicable / Not applicable
Other names
429-1008
strtoul( )
Syntax:
Parameters:
Returns:
Function:
Availability:
Requires:
Examples:
Example Files:
Also See:
result=strtoul(nptr,endptr, base)
nptr and endptr are strings pointers and base is an integer 2-36.
result is an unsigned long int.
returns the converted value in result , if any. If no conversion could be performed,
zero is returned.
The strtoul function converts the initial portion of the string pointed to by nptr to a
long int representation in some radix determined by the value of base. The part of
the string after conversion is stored in the object pointed to endptr, provided that
endptr is not a null pointer. If nptr is empty or does not have the expected form, no
conversion is performed and the value of nptr is stored in the object pointed to by
endptr, provided endptr is not a null pointer.
All devices.
STDLIB.H must be included
long result;
char str[9]="123hello";
char *ptr;
result=strtoul(str,&ptr,10);
//result is 123 and ptr is "hello"
None
strtol(),
strtod()
297

Related parts for PCDIDE COMPILER