Hey all,
I wanted to ask how i display a value of a variable using L"xxxx"?
Thanks
L"xxxx"
do you need this?
in the variable text is now L"3121"
Code: Select all
#include <iostream>
wchar_t text=new wchar_t[10];
int x=3121;
swprintf(text,10,"%i",x);