I was learning how to use wchar, but I am unable to copy the char using snprintf(). I want to copy the text from a to b but it never prints the value. What am I doing wrong? And I want to use snprintf and nothing else.
#include <wchar.h>
#include <stdio.h>
void main() {
printf("Start\n");
wchar_t a[12];
wchar_t b[] = L"984567";
snprintf(a, sizeof(a), "%ls\0", b);
printf("%ls\n", a);
printf("%ls\n", b);
printf("end\n");
}
//Output
Start
984567
end
For an array
T arr[10]
,sizeof arr
returns the number of bytes occupied by the array (ie.sizeof(T) * 10
in this case.) However,swprintf
expects the number ofwchar_t
in the destination buffer as its second argument.The below test code shows how the canary values are destroyed when you simply use
sizeof a
and the sourcewchar_t
string is longer than the destinationwchar_t
buffer.