This
gives this:
I would not have expected Sscanf() to return 2.
Please explain how it works.
Code:
else if ( Sscanf(L"foo", L" %lf %2s", &number, &unit) == 2 )
{
Printf(L"%lf %s\r\n", number, unit);
gives this:
Code:
0.0000000000000000 fo
I would not have expected Sscanf() to return 2.
Please explain how it works.