I am using C++, Unicode. What I am trying to do is pretty much this:
int Main(){
int test = 5;
std::cout << "hi " << test;
return 0;
}
Output: hi 5
I am using C++ so which method should I use? So I can add a int/NullTerminated. The reason for this is so I can grab input from the user in a Textbox and then send a query to SQL. I am not using a CMD line, I making a GUI interface with win32, so that's why I use wchar_t and not wstring.