What is operator? Operator means simple symbol which is used between operands (variable) during mathematical process. There are following categories: 1. arithmetic: + – * / % i.e. a=6 b=2 printf(“a+b =%d”, a+b); printf(“a-b =%d”, a-b); printf(“a/b =%d”, a/b); printf(“a*b =%d”, a*b); printf(“a%b =%d”, a%b); op: a+b =8 a-b =4 a/b =3 a*b =12 a%b […]