J
Jonathan Bartlett
adelfino said:I mean:
unsigned char foo[bar] = "";
is the same as:
unsigned char foo[bar];
memset (foo, '\0', bar);
I believe the former only sets the first character to \0 while the
second will set all of them.
Jon