operators in c program
C-Operators An operator is used to do some operation taht can be performed on data.There are eight types of operators in C to do the operations. thery are Types of Operators Arithmetic operators Relation operators Logical operators Conditional operators Increment / Decrement operators Bitwise operators Special operators Short hand assignment operators Arithmetic operators Arithmetiic operator s are used to do the arithmetic Calculation The general form is variable1 AO Variable2 variable -constant(or) variables AO-Arithmetic operator OPERATOR OPERATION EXAMPLE + Addition x=2+2 - Subraction y=10-4 * Multiplication z=2*2 / Division a=8/2 % Modulo b=3%2 Relation operators Relation operation is u...
Comments
Post a Comment