Skip to main content

example of relational qperators in c

#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);
}

Comments

Popular posts from this blog

example of typecasting in c

/*Type Casting in C Typecasting allows us to convert one data type into other. */ //simple example to cast int value into the float. #include <stdio.h>    int   main (){   float   f = ( float ) 9 / 4 ;     printf ( "f : %f \n " ,  f  );     return   0 ;   }