Computer Science, asked by preetimehra9, 3 months ago

what is an operator? what are the different types of operator in c?

Answers

Answered by AnswersMaster
3

Answer:

Operators are the foundation of any programming language. Thus the functionality of C language is incomplete without the use of operators. Operators allow us to perform different kinds of operations on operands. In C, operators in Can be categorized in following categories:

Arithmetic Operators (+, -, *, /, %, post-increment, pre-increment, post-decrement, pre-decrement)

Relational Operators (==, !=, >, <, >= & <=) Logical Operators (&&, || and !)

Bitwise Operators (&, |, ^, ~, >> and <<)

Assignment Operators (=, +=, -=, *=, etc)

Other Operators (conditional, comma, sizeof, address, redirection)

Similar questions