Special operators in C


1. comma operator: it is used to link two or more related expressions.

2. sizeof() operator: it returns the size (i.e no.of bytes) of the operand.

sizeof(operand); --> x=sizeof(int); y=sizeof(sum);

3. Address operator

4. Differencing operator

5. Dot operator

6. Arrow operator.