I have a WCHAR[]:
WCHAR foo[200];
I want to copy values into it:
if (condition)
{
foo = L"bar";
}
else
{
foo = L"odp";
}
What is the best way to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on exactly what you need to do, you could change the type of foo:
This is fine if don’t need to append any more data to foo.