Alex Blekhman
18 years ago
How to use printf for uchar* datatype. For e.g., If I have
a structure
called A with one of its member as uchar* data then how do
i print the value
of data using printf??
What is it `uchar'? Unsigned shar? Wide char? You can printa structure
called A with one of its member as uchar* data then how do
i print the value
of data using printf??
wide string with `printf' with "%ls" format:
printf("Here's wide string: %ls", L"Hello");
Alex