17.02.2015 Views

CCS C Compiler Manual PCB / PCM / PCH

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

It causes the innermost enclosing loop (or switch) to be exited immediately.<br />

Example:<br />

break;<br />

Also See: Statements<br />

continue<br />

The continue statement causes the next iteration of the enclosing loop(While, For,<br />

Do) to begin.<br />

The syntax is:<br />

continue;<br />

It causes the test part to be executed immediately in case of do and while and the<br />

control passes the<br />

re-initialization step in case of for.<br />

Example:<br />

continue;<br />

Also See: Statements<br />

expr<br />

The syntax is:<br />

expr;<br />

Example:<br />

i=1;<br />

Also See: Statements<br />

20

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!