码迷,mamicode.com
首页 > 其他好文 > 详细

c str to float

时间:2019-05-07 01:21:38      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:div   main   nbsp   int   oat   char   span   []   wchar_t   

 

#include <wchar.h>

int main ()
{
  wchar_t szOrbits[] = L"365.24 29.53";
  wchar_t * pEnd;
  double d1, d2;
  d1 = wcstod (szOrbits,&pEnd);
  d2 = wcstod (pEnd,NULL);
  wprintf (L"%f-------%f\n", d1,d2);
  return 0;
}

输出

365.240000-------29.530000

 

c str to float

标签:div   main   nbsp   int   oat   char   span   []   wchar_t   

原文地址:https://www.cnblogs.com/sea-stream/p/10823149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!