ConvertDataTypes.comConvert data types programming in one click !

Convert long to char* in C++

    37399 hits
  • long vIn = 0;
  • char vOut [12];
  • _itoa_s(vIn,vOut,sizeof(vOut),10);