Lionello Lunesu schrieb:
> I just run accross the following code at my work:
>
> # NoWallCheck?value=_T("0"):value=_T("1");
>
> Took at least a minute to figure out what was going on.
same like
value = NoWallCheck ? _T("0") : _T("1");
think of printf("%s",bBool ? "true" : "false");
> It's useless
it is handy
> slow
???