

if                          C Keyword                          if




Introduce a conditional statement


if is  a C keyword that introduces  a conditional statement.  For
example,


        if (i==10)
                dosomething();


will dosomething only if i equals ten.

if statements can be used with the statements eellssee iiff and eellssee to
create a  chain of conditional statements.  Such  a chain can in-
clude  any  number  of eellssee  iiff  statements,  but  only one  eellssee
statement.

***** See Also *****

C keywords, else



































COHERENT Lexicon                                           Page 1


