Comparison Operators in C Language

Comparison Operators in C Language: (1) Comparison Operators are used for comparing two variables. (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h>// Assignment Operators in C Languageint main(){int x;int y; x = 5; y = 5;printf(“x equals to y: %d\n”, x == y); x = 5; y = 6;printf(“x not equals …