Hi, I'm hoping someone might be able to help me with what I think might be a simple problem.
I have came across the need to add to an unsigned char array a literal single quote "'"
My question is how can I achieve that?
unsigned char uArray[4];
uArray[0] = 'I';
uArray[1] = 't';
uArray[2] = '''; // here is where my problem lies
uArray[3] = 's';
The quote I need to insert, is closing the opening quote.
I appreciate any help offered.
(edit)
Sorry if you wasted time reading this, I found solution.
I guess sometimes I need to write a question down before the answewr comes to me.
uArray[2] = 39;
Thank you.
Solved.