14.12.2012 Views

Optivity Telephony Manager: System Administration - BT Business

Optivity Telephony Manager: System Administration - BT Business

Optivity Telephony Manager: System Administration - BT Business

SHOW MORE
SHOW LESS

Create successful ePaper yourself

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

602 Alarm management<br />

The following is an example using conditional expressions that is not allowed:<br />

if (condition A){<br />

...<br />

}<br />

else if (condition B){<br />

...<br />

}<br />

else {<br />

...<br />

}<br />

Instead, use the following:<br />

if (condition A){<br />

...<br />

}<br />

else {<br />

if (condition B){<br />

...<br />

}<br />

else {<br />

...<br />

}<br />

}<br />

The do while loop<br />

The do while loop can only be used inside a function.<br />

Syntax:<br />

do{<br />

...<br />

} while (Condition);<br />

553-3001-330 Standard 3.00 August 2005

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

Saved successfully!

Ooh no, something went wrong!