[ create a new paste ] login | about

Link: http://codepad.org/EY5PqSIw    [ raw code | output | fork ]

seen_ - C++, pasted on Apr 29:
1
2
3
4
5
6
7
8
#include <iostream>
#include <locale>

int main() {
using namespace std;
locale::global( locale("") );
use_facet< money_put<char> >( locale() ).put( cout, false, cout, ' ', 123 );
}


Output:
1
123


Create a new paste based on this one


Comments: