C PROGRAM: Simple explanation of c program to find greatest of two number using conditional operator.
C Programming What is operators? What is conditional operator? How to find greatest of two number using conditional operator? We will be discussing about the c program to find greatest of two number using conditional operator and the other details. what is operator? An operator is a symbolic, which performs particular manipulations or operations on data that is assigned to a variable. Following are the types of operator: Arithmetic operators - +,-,*,/,% Relational operators - <,>,==,<=,>=,!= Logical operator - &&,||,!= Increment or Decrement - ++,-- Assignment operator - = Bit wise operator - &,|,^,>>,<<,~ Comma operator ...