ConvertDataTypes.comConvert data types programming in one click !

Convert double to char* in C

    9816 hits
  • double vIn = 1.8446744073709552e+019;
  • char vOut [26];
  • _gcvt_s(vOut,sizeof(vOut),vIn,17);