猿问

如何将string型转化为double型数组

string型长串中是小数和空格组成

慕粉3276526
浏览 1633回答 1
1回答

asd8532

小数和空格?你要给出个具体的例子#include <stdio.h> #include <stdlib.h>  int main ()  {          char szOrbits[] ="365.24";          char* pEnd;          float f1;          f1 = strtof (szOrbits, &pEnd);          printf("%f\n",f1);          return 0;  } //365.239990
随时随地看视频慕课网APP
我要回答