Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Wie bekomme ich das hin?? Hex -> dec
m_test = "FF"; int TestDec = atoi(m_test); //geht nicht !!
Danke
Hat sich erledigt! [code type="C++" tabs="4" m_test = "FF"; int TestDec = strtoul(m_test,0,16); [/code]