728x90
TCHAR s[16];
wsprintf(s, L"wsprintf returns %3.2f", 123.03);
==> output: wsprintf return f
swprintf(s, L"swprintf returns %3.2f", 123.03);
==> output: swprintf returns 123.03
The wsprintf() is one of the windows API. It's not support all format string.
728x90
'Trouble Shooting' 카테고리의 다른 글
libpulse-dev install error on raspbian jessie (0) | 2017.12.21 |
---|---|
Error: spawn rec ENOENT (0) | 2017.09.04 |
ubuntu apt-get update error (0) | 2017.04.19 |
unable to load OCI library:libaio.so.1: cannot open shared object file: No such file or directory (0) | 2017.04.18 |
Problem with bcp tool - SQLFLT8 type can't convert float value correctly (0) | 2009.07.29 |