I am trying to print char as positive value:
char ch = 212; printf(\"%u\", ch);
but I get:
4294967252
How
Declare your ch as
ch
unsigned char ch = 212 ;
And your printf will work.