Saturday, 14 September 2013

Unsigned Char Values in String

Unsigned Char Values in String

char takes values in the range of -128 to 127. By simply putting unsigned
before char the range changes to 0-255. How to achieve the same effect in
a string? So that all chars in that string take values from 0-255?

No comments:

Post a Comment