home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_08 / 1108112a < prev    next >
Encoding:
Text File  |  1995-11-01  |  249 b   |  16 lines

  1. /* bit1.c: Pack a date into an integer */
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.     unsigned int date, year = 92, mon = 8, day = 2;
  7.  
  8.     date = (year << 9) | (mon << 5) | day;
  9.     printf("%04X\n",date);
  10.     return 0;
  11. }
  12.  
  13. /* OUTPUT:
  14.  * B902 */
  15.  
  16.