home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
BITSET.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
219b
|
15 lines
#include <bitset>
#include <iostream.h>
using namespace std;
int main ()
{
bitset<8> b;
b |= 5;
#ifndef RWSTD_NO_NONTYPE_ARGS
cout << b << endl; // results in 00000101
#endif
return 0;
}