Saved Bookmarks
| 1. |
Write the symbol which is used as put to operator in c++ |
|
Answer» Answer: The addition operator tells the compiler to add both of the operands 'a' and 'b'. C/C++ has MANY built-in operator TYPES and they can be CLASSIFIED as: Arithmetic OPERATORS: These are the operators used to perform arithmetic/mathematical operations on operands. EXAMPLES: (+, -, *, /, %,++,–). |
|