|
int _tmain (int argc, _TCHAR * argv [])
{
UCHAR string [25];
printf ("Usage:% s\n", argv [0]);
return 0;
}
My console program is called Test
When I enter test in the command line under dos
It can only print one t
Question: How can the conversion display be correct? |
|