example of relational qperators in c July 15, 2020 #include <stdio.h>int main(){ int a=8 ,b=3; printf("%d\n",a==b); printf("%d\n",a!=b); printf("%d\n",a<b); // 0 means False & 1 means True printf("%d\n",a>b); printf("%d\n",a<=b); printf("%d\n",a>=b);} Share Get link Facebook X Pinterest Email Other Apps Labels c programming Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment