Conditional Operator in C
C

Conditional Operator In C Language with Example (?:)

The conditional operators in C language are known by two more names Ternary Operator ?: Operator It is actually the if condition that we use in C language decision making, but using conditional operator, we turn the if condition statement into a short and simple operator. The syntax of a conditional operator is : expression […]

increament operator
C

Example of Increment or Decrement Operator in C Language

Increment and decrement operators in C C language contains two unary operators referred to as increment (++) and decrement (–) operators. The two unary arithmetic operators in C Increment operator (++) Decrement operator (- -) The increment operator increments the variable by one and the decrement operator decrements the variable by one. These operators can […]