InterviewSolution
Saved Bookmarks
| 1. |
What Is || Operator And How Does It Function In A Program? |
|
Answer» The || is also known as the OR operator in C programming. When USING || to EVALUATE logical conditions, any condition that evaluates to TRUE will RENDER the entire condition statement as TRUE. The || is also known as the OR operator in C programming. When using || to evaluate logical conditions, any condition that evaluates to TRUE will render the entire condition statement as TRUE. |
|