ConvertDataTypes.comConvert data types programming in one click !

Convert int to char* in C++

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