I have two strings one with integer (eg string strInt = "100") and one with hex number (eg string strHex = "0x64"). Whats the quickest/nice/safe way to compare if the values of strInt and strHex are equal(numerically)?
Need to exclude sprintf to prevent buffer overflow Also cant use snprintf - my compiler does not support c++ 11
Thank you all in advance