Saved Bookmarks
| 1. |
What is the significance of unary, binary and ternary operators in c++? |
|
Answer» Answer: In C PROGRAMMING language, unary, binary &ternary operators are USEFUL for carrying out mathematical operations. Binary operators are the one that operate on two operands e.g. '+', ' -', ' *', '/'. Syntax can be LIKE int C=a+b; Ternary operators are the one that OPERATES on three operands. Explanation: |
|