Say I have the following declared variable:
char mychararray[35];
and I want to set every character in the array to a blank space... How can I do that?
My instructor told me all I had to do was put
mychararray = "";
but that didn't work at all...
Am I using an outdated version of Visual Studio (2012), or is this just a bad initialization? If it is the latter, please explain how to make all the characters a blank space.
Thanks in advance!