When declaring a numeric variable in C, you can use 'signed' or 'unsigned'.
Variable is signed unless you specifically type unsigned before the variable type:
unsigned int sh = 26;