+ 1
Explain the code
Help
4 Respuestas
+ 4
It outputs a character before 'c' which is 'b'.
'c' in ascii code has value of 99.
'c'*-1=-99
-99 in binary form is: 10011101.
~(-99) is : 01100010 = 98
98 in ascii code is 'b' in char form.
+ 1
Printf("%c \n",~('c' * -1));
+ 1
Thank you
0
Explain that line