我想將一個變量從字符串轉換爲浮點數。但我得到錯誤的價值。以下是我的代碼。從字符串轉換爲浮點數
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
main(int argc,char *argv[])
{
char endTime[4][26];
time_t timere;
struct tm *tm_infoe;
float dlay[4][3];
time(&timere);
tm_infoe = localtime(&timere);
strftime(endTime[1], 26, "%Y%m%d%H%M%S", tm_infoe);
printf("Endtime %s\n", endTime[1]);
dlay[1][1]=atol(endTime[1]);
printf("Value from atol:%ld\n", atol(endTime[1]));
dlay[1][1]=atof(endTime[1]);
printf("Float value from atof:%f\n", dlay[1][1]);
sscanf(endTime[1], "%f", &dlay[1][1]);
printf("Float value from sscanf:%f\n", dlay[1][1]);
}
atof和sscanf的函數都給出了錯誤的值。以下是輸出。你能告訴我哪裏錯了嗎?
Endtime 20151018221710
Value from atol:20151018221710
Float value from atof:20151017668608.000000
Float value from sscanf:20151017668608.000000
atol給出正確的值,但我需要它在浮動格式。
它是如何錯了嗎?它不會變好。 – deviantfan
'float'精確到7-8位十進制數字。看起來你在這個容忍度內觀察結果。這又是什麼問題? –