ConvertDataTypes.comConvert data types programming in one click !

Convert char* to unsigned int in C++

    14459 hits
  • char * vIn = "0";
  • unsigned int vOut = strtoul(vIn,NULL,10);