ハブ君の寝言

日記のような何か

2010-05-19から1日間の記事一覧

str2double

c

"123 456"って感じのデータをdoubleにする関数。書いて気づいた。小数点どうすんのって まぁいいか void str2double(char *str, double *x, double *y){ int i=0; *x = 0.0; *y = 0.0; while(str[i]!=' '){ *x = *x * 10; *x += str[i] - '0'; i++; } i++; w…