c_cpp 在c中使用strtod的例子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在c中使用strtod的例子相关的知识,希望对你有一定的参考价值。

/* strtod example */
#include <stdio.h>      /* printf, NULL */
#include <stdlib.h>     /* strtod */

int main ()
{
  char szOrbits[] = "365.24 29.53";
  char* pEnd;
  double d1, d2;
  d1 = strtod (szOrbits, &pEnd);
  d2 = strtod (pEnd, &pEnd);
  printf ("The moon completes %.2f orbits per Earth year.\n", d1/d2);
  pEnd--;
  printf("Last points to %c", *pEnd);
  return 0;
}

以上是关于c_cpp 在c中使用strtod的例子的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 在C ++中使用内部枚举和联合的状态对象的例子

c_cpp 在cpp中使用atof的小例子

c语言strtod()函数的用法

c_cpp 羊群的例子

c_cpp oF迷你的例子

c_cpp LZ4的例子