These members of the struct lconv  structure specify how to print the sign (if any) in a monetary value. 
char *positive_sign char *negative_sign 
In the standard `C' locale, both of these members have a value of ""  (the empty string), meaning ``unspecified''. 
The ANSI standard doesn't say what to do when you find this value; we recommend printing positive_sign  as you find it, even if it is empty. For a negative value, print negative_sign  as you find it unless both it and positive_sign  are empty, in which case print `-' instead. (Failing to indicate the sign at all seems rather unreasonable.) 
char p_sign_posn char n_sign_posn positive_sign  or negative_sign .) The possible values are as follows: 
0 
1 
2 
3 
4 
CHAR_MAX 
The ANSI standard doesn't say what you should do when the value is CHAR_MAX . We recommend you print the sign after the currency symbol. 
It is not clear whether you should let these members apply to the international currency format or not. POSIX says you should, but intuition plus the examples in the ANSI C standard suggest you should not. We hope that someone who knows well the conventions for formatting monetary quantities will tell us what we should recommend.