2021-10-13から1日間の記事一覧

atof

atofは、実数の文字列を倍精度浮動小数点数値型に変換する。Man page of ATOFatof.cで、入力文字列がどうなるか試してみる。 $ vi atof.c $ gcc atof.c -o atof $ ./atof str: 1 d = 1.000000 $ ./atof str: 1.23 d = 1.230000 $ ./atof str: -4.56 d = -4.5…