the hex value 00 00 00 00 00 BC 61 4E (LSB)
which is stored in string as
char data[8] = {0x4E, 0x61, 0xBC, 0x00,
0x00, 0x00, 0x00, 0x00};
now i want to convert it into int
(equivalent of above hex string is 12345678)
i have below code
char a = 0x00;
char b = 0x00;
char c = 0x00;
char d = 0x00;
char e = 0x00;
char f = 0xbc;
char g = 0x61;
char h = 0x4e;
long long int combination = (a << 56) |(b << 48) | (c << 40) | (d << 32) |
(e << 24) | (f << 16) | (g << 8) | (h);
cout << combination << endl << endl;
but i'm getting undefined result
help me..!!!