Prerequisite – Operators in C The comma operator in C is an operator that allows multiple expressions to be evaluated sequentially in a single statement. Syntax: The syntax of the comma operator ...read more
C-Operator
3 postsPrerequisite – Operators in C The conditional operator in C is a ternary operator that is used to evaluate a boolean expression and return one of two values depending on whether the ...read more
Actually, “- – >” is not an operator, but this is combination of two separate operators, “- -” and “>” . So, if you write it as It will print following output, ...read more