0% found this document useful (0 votes)
47 views

C Programming

This document describes common operators used in programming languages. It lists arithmetic, logical, relational, increment/decrement, assignment, bitwise, address, and data operators along with their symbols. Common arithmetic operators are +, -, *, /, and % while common logical operators are ||, &&, and !. Relational operators include ==, <=, >=, !=, >, and <.

Uploaded by

Manoj Kavedia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views

C Programming

This document describes common operators used in programming languages. It lists arithmetic, logical, relational, increment/decrement, assignment, bitwise, address, and data operators along with their symbols. Common arithmetic operators are +, -, *, /, and % while common logical operators are ||, &&, and !. Relational operators include ==, <=, >=, !=, >, and <.

Uploaded by

Manoj Kavedia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Operators

Operators Symbols
Arithmetic +,-,*,/,%(Modulus)
Logical Or(||) , and (&&) , Not(!)
Relational ==,<=,>=,!=,>,<
Increment ++ (pre ++variable) (post variable++)
Decrement --(pre --variable) (post variable--)
Assignmen =
t
Bitwise Or(|),and(&),not(~),exor(^),right shift(>>), left
shift(<<)
Address &
Data *
Colon :

You might also like