home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BITSET.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  219b  |  15 lines

  1. #include <bitset>
  2. #include <iostream.h>
  3.  
  4. using namespace std;
  5.  
  6. int main ()
  7. {
  8.     bitset<8> b;
  9.     b |= 5;
  10. #ifndef RWSTD_NO_NONTYPE_ARGS
  11.     cout << b << endl; // results in 00000101
  12. #endif
  13.     return 0;
  14. }
  15.