Computer Science, asked by gaggi1684, 4 months ago

Relational Operators are used to compare two values. There are 6 types of relational operators : == : returns true if LHS is equal to RHS != : returns true if LHS is not equal to RHS > : returns true if LHS is greater than RHS < : returns true if LHS is less than RHS >= : returns true if LHS is greater than or equal to RHS <= : returns true if LHS is less than or equal to RHS Usage : var1 "operator" var2 for example : var1 == var2 or var1 >= var2 etc Note that in C 0 corresponds to False and 1 corresponds to True. Infact any non-zero number will correspond to True. For this task, take as input two numbers and output 1 if they are equal and zero otherwise.

Answers

Answered by anilkumar491982
0

Answer:

I don't know I don't know

Similar questions