Hi
I have declared BYTE myKey[10];
and on executing the value stored in myKey is 0x9100
i need to do string compare this value with user defined value (9100)
how can i do the comparison?
i converted to int
int tempkey = (int)myKey[i]; //(have put it in loop based on myKey length)
and trying to convert tempKey to string using sstream , but getting errors
any simple logic?
Thanks