Podcast Beta
Questions and Answers
What are arithmetic operators in C language?
Arithmetic operators in C language are symbols that perform mathematical operations on operands. Examples of arithmetic operators are addition (+), subtraction (-), multiplication (*), division (/), and modulus (%).
What are relational operators in C language?
Relational operators in C language are symbols that compare the values of two operands and return a logical value (true or false). Examples of relational operators are equal to (==), not equal to (!=), greater than (>), less than (<), greater than or equal to (>=), and less than or equal to (<=).
What are logical operators in C language?
Logical operators in C language are symbols that perform logical operations on boolean values. Examples of logical operators are logical AND (&&), logical OR (||), and logical NOT (!).
What are bitwise operators?
Signup and view all the answers
What are operators in C language?
Signup and view all the answers