I'm trying to write some code from an example i've been given. The line which is causing the problem is:
unsigned char search[][256] = '\04' "TEST", '\04' "DEMO";
I have very little experience with C, am I right in thinking this is a 2D array and if so what is being assigned to it?
The error i'm getting is "expected ',' or ';' before string constant". I've tried putting both of those before the strings but that didn't seem to help.
Could someone explain what this line means and perhaps whats wrong with it.