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

  1. /* Demonstrates unary operator prefix and postfix modes */
  2.  
  3. #include <stdio.h>
  4.  
  5. int a, b;
  6.  
  7. int main(void)
  8. {
  9.     /* Set a and b both equal to 5 */
  10.  
  11.     a = b = 5;
  12.  
  13.     /* Print them, decrementing each time. */
  14.     /* Use prefix mode for b, postfix mode for a */
  15.  
  16.     printf("\nPost  Pre");
  17.     printf("\n%d    %d", a--, --b);
  18.     printf("\n%d    %d", a--, --b);
  19.     printf("\n%d    %d", a--, --b);
  20.     printf("\n%d    %d", a--, --b);
  21.     printf("\n%d    %d\n", a--, --b);
  22.  
  23.     return 0;
  24. }
  25.  
  26.