FlashAsh99
Programmer
Suppose I have something like...
#define FIRSTSTRING "my string 1"
...
char[] secondString = L"my string 2"
char[] firstString = ???
Where there is ???, What do I put here to set firstString to the value of FIRSTRING macro, similar to how secondString is set.
#define FIRSTSTRING "my string 1"
...
char[] secondString = L"my string 2"
char[] firstString = ???
Where there is ???, What do I put here to set firstString to the value of FIRSTRING macro, similar to how secondString is set.