InterviewSolution
Saved Bookmarks
| 1. |
What is the synatx of if-then-else statement? |
|
Answer» Answer: If the Boolean expression EVALUATES to true, then the if block will be executed, OTHERWISE, the else block will be executed. C programming LANGUAGE assumes any non-zero and non-null values as true, and if it is EITHER zero or null, then it is assumed as FALSE value. thanks |
|