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

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
do
Statement: do stmt while (expr);
Example:
do {
} while (c!=0);
Also See:
do-while
It differs from While and For loop in that the termination condition is checked at the bottom of the
loop rather than at the top and so the body of the loop is always executed at least once.
The syntax is
The statement is executed; the expr is evaluated. If true, the same is repeated and when it
becomes false the loop terminates.
Also See:
for
for (expr1;expr2;expr3)
check and expr3 is re-initialization. Any of them can be omitted.
Example:
for (i=1;i<=10;++i)
Also See:
do
while (expr);
For is also used as a loop/iteration statement.
The syntax is
The expressions are loop control statements. expr1 is the initialization, expr2 is the termination
statement
statement
putc(c=getc());
printf("%u\r\n",i);
Statements
Statements
Statements
,
,
While
While
33

Related parts for PCDIDE COMPILER