what would be the best way to copy unsigned char array to another...
example :-
unsigned char q[1000];
unsigned char p[1000];
strcpy (q,&p);
doesnot work gives me error saying ...cannot convert parameter 1 from unsigned char [1000] to char *
Thanks,
c++and notc? There should be no problem usingstrcpywithunsigned chararrays (as long as they're null-terminated) in C. At worst an off-by-default warning. – R.. Dec 22 '10 at 8:03