c++ - Error when overwriting value in unsigned char array -


why error message

 error: invalid conversion ‘const char*’ ‘unsigned char’ [-fpermissive] 

if try overwrite value in array of data type unsigned char?

the data type want overwrite value unsigend char.

don't use

your_array[index] = "c"; 

instead of

your_array[index] = 'c'; 

?

anyway should put code on post show error.


Comments

Popular posts from this blog

xslt - Substring before throwing error -

Google Cloud Bigtable Durability/Availability Guarantees -

Android M doze mode and "native" posix socket freezing up -