OiO.lk Blog C# Why printf show false value of an hex number
C#

Why printf show false value of an hex number


Code

char a; 
a = 0xf1;
printf("%x\n", a);

Output

fffffff1

printf() show 4 bytes, that exactly we have one byte in a.

What is the reason of this misbehavior?

How can I correct it?



You need to sign in to view this answers

Exit mobile version