0
What does "0x..." mean in Integer declaration
for example when i write; int x = 0x1; then when i print x it it gives, "1"; but then if i write; int x = 0x10; when i print x it gives, "16";
2 Respostas
+ 4
hexadecimal value
0
thank you
for example when i write; int x = 0x1; then when i print x it it gives, "1"; but then if i write; int x = 0x10; when i print x it gives, "16";