Computer Science, asked by arabinda80, 11 months ago

Write the operators use in c-language

Answers

Answered by Anonymous
0

&&,++,--,+=, -=

Hope it helps

Answered by Hacket
0
1-arithmetic operator
Example- +,-,*,/,%

2-relational operator
Example-
<
<=
>
>=
==
!=

3-logical operator
Example-
&&
||
!

4-assignment operator
Example-
a=a+1

Hacket: Don’t worry I will mention here
Hacket: 5-increment and decrement operator
Hacket: Example-
++ and —
Hacket: 6-conditional operator
Hacket: Example -
exp1?exp2:exp3
Hacket: 7-bitwise operator
Hacket: Example-
&
|
^
<<
>>
Hacket: 8-special operators
Hacket: Example-
c==++a-b;
Hacket: Thanks for asking
Similar questions