/* * exp_ro1.c - using other relational oporators */ #include int main(void) { int xx, yy; // declare int variables xx and yy xx=10; // assign xx value of 10 yy=15; // assign yy the value of 15 if (xx5) printf("Value of xx(%d) is greater than 5.\n", xx); if (xx>=10) printf("Value of xx(%d) is greater than or equal to 10.\n", xx); return 0; }