hi
I'm using codevision AVR. in string.h lib when one of the arrays is const an error occurs.
for example i want to put a array of string from one array to another like this :
unsigned char A[11];
const unsigned char B[11]={"HELLOWORLD"};
when i use strncpy like this:
strncpy(A,B,10);
i...