if() →
|
If statement is a conditional branching statement. In conditional branching statement a condition is evaluated.
if(condition)
statement;
If the condition is evaluated and found to be true, the statement following the "if" is executed. If false, the following statement is skipped.
|
No comments:
Post a Comment
Note: only a member of this blog may post a comment.