what is an operator? what are the different types of operator in c?
Answers
Answered by
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
Social Sciences,
2 months ago
Math,
5 months ago
Social Sciences,
5 months ago
Science,
10 months ago
English,
10 months ago
Math,
10 months ago