home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day04 / List0405.c < prev    next >
C/C++ Source or Header  |  2002-04-13  |  438b  |  20 lines

  1. /* Demonstrates the evaluation of relational expressions */
  2.  
  3. #include <stdio.h>
  4.  
  5. int a;
  6.  
  7. int main( void )
  8. {
  9.     a = (5 == 5);           /* Evaluates to 1 */
  10.     printf("\na = (5 == 5)\na = %d", a);
  11.  
  12.     a = (5 != 5);           /* Evaluates to 0 */
  13.     printf("\na = (5 != 5)\na = %d", a);
  14.  
  15.     a = (12 == 12) + (5 != 1); /* Evaluates to 1 + 1 */
  16.     printf("\na = (12 == 12) + (5 != 1)\na = %d\n", a);
  17.     return 0;
  18. }
  19.  
  20.