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

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
goto
Statement: goto label;
The goto statement cause an unconditional branch to the label.
The syntax is
A label has the same form as a variable name, and is followed by a colon. The goto's are used
sparingly, if at all.
Example:
goto loop;
Also See:
label
Statement: label: stmt;
Example:
loop: i++;
Also See:
break
Statement: break;
The break statement is used to exit out of a control loop. It provides an early exit from while, for ,do
and switch.
The syntax is
It causes the innermost enclosing loop(or switch) to be exited immediately.
Example:
break;
Also See:
goto label;
break;
Statements
Statements
Statements
35

Related parts for PCDIDE COMPILER