blob: b7dd08a4618e0738222c7607223a4c1221c3c246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// test the parametrized manipulators
#include <stdlib.h>
#include <iomanip.h>
main()
{
#ifdef _G_NO_TEMPLATES
cerr << "(IO manipulators are not supported with this compiler)\n");
exit(-1);
#else
cout << dec << 1234 << ' '
<< hex << 1234 << ' '
<< oct << 1234 << endl;
//SMANIP<int> x = setw(4);
//operator<<(cout, x);
cout
<< "("
<< dec << setw(4) << setfill('*')
<< 12 << ")\n";
cout << "(" << 12 << ")\n";
cout << setiosflags(ios::internal);
cout << "(" << setw(6) << -12 << ")\n";
exit(0);
#endif
}
|