转化字符串为数值结果

代码如下:

char s[]="0.096147 0.048460 -0.098422";
char d[] = " ";
char *t;
t = strtok(s, d);
while(t != NULL){
printf("%s\n", t);
t = strtok(NULL, d);
}

可以参考: C语言字符串分割——strtok

你可能感兴趣的:(转化字符串为数值结果)