English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2006-09-09 05:14:00 · 3 answers · asked by Anonymous in Computers & Internet Programming & Design

3 answers

left postfix operators: ++, --, ->, ., etc
right unary operators: ++, --, *, &, +, -, !, ~, new, delete
left multiplicative operators: *, /, %
left additive operators: +, -
left shift operators: <<, >>
left relational operators: <, >, <=, >=
left equality operators: ==, !=
left bitwise AND: &
left bitwise exclusive OR: ^
left bitwise inclusive OR: |
left logical AND: &&
left logical OR: ||
right conditional operator: ?:
right assignment operators: =, *=, /=, %=, +=, -=, >>=, <<=, &=, ^=, |=
left comma operator: ,

--------------------------------------------------------------------------------



The operators are listed in the order of their precedence from high to low.

2006-09-09 05:18:52 · answer #1 · answered by iyiogrenci 6 · 2 0

to devlop a program we have to evaluate flow of statement based on some conditions that evaluate to true or false; arithmetically or logically. the operators are the conditions which are evaluated mathematically or logically. mathematical operators are addition, subtraction, multiplication, division, mod, exponentition, etc. the logical operators are and, or and not.

2006-09-09 12:38:12 · answer #2 · answered by dilipagr_2000 2 · 0 0

operator is performing some functions and doing manipulation
of data that is user defined like object and classes or basic data type like int,float .

2006-09-09 12:58:43 · answer #3 · answered by sapan b 1 · 0 0

fedest.com, questions and answers