Wednesday, May 14, 2008

Conditional & ternary operators

Conditional & ternary operators

The conditional operator? and: are sometimes called ternary operators.

A ternary operator is one which contains three operands.

The general form of ternary operator is:

exp 1 ? exp 2 : exp 3

The operator works as, if exp 1 is evaluated first. If the result is true then exp 2 is executed, otherwise exp 3 is executed.

0 comments:

Copyright

Copyright © 2008 C Tutorial, All rights are reserved