home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
diverses
/
tctnt
/
formioc.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-08-27
|
305 b
|
18 lines
/* FORMIOC.CPP: **IOS Member Functions**
*/
#include <iostream.h>
int main()
{
int i = 11;
cout.width( 10 );
cout.fill( '-' );
cout.setf( ios::left, ios::adjustfield );
cout.setf( ios::hex, ios::basefield );
cout.setf( ios::uppercase );
cout << i << "\n";
return 0;
}