在C中将unsigned long long转换为double



我意识到这个问题可能是处理器相关的,但希望有人能指出我在正确的方向。在我的生活中,我无法弄清楚如何在C中将表示纳秒的unsigned long long int转换为表示秒的double(我使用32位大端位PowerPC 405进行此特定测试,并使用GNU C99编译器)。

我试过:

unsigned long long int nanoseconds = 1234567890LLU;
double nanoseconds_d = nanoseconds*1e-9;

:

nanoseconds_d = ((double) nanoseconds)*1e-9;

对于这两种情况,我都得到0。我哪里做错了?

编辑添加完整示例

#include <stdio.h>
#include <stdlib.h>
int
main( int argc, char *argv[] )
{
    unsigned long long int nanoseconds = 1234567890LLU;
    double nanoseconds_d = nanoseconds * 1e-9;
    printf("%gn", nanoseconds_d);
    return 0;
}

MAKEFILE

SRCS    = simple.c    
INCLUDE := -I$(PWD)            
CFLAGS  := -O0 -g3 -Wall -fmessage-length=0 -mhard-float -fsigned-char -D_REENTRANT
LIBS    := -lc
OBJS = $(SRCS:.c=.o)
PROG = $(SRCS:.c=).out
all: $(PROG)
$(PROG): $(OBJS)
    @echo "Linking object files with output."
    $(CC) -o $(PROG) $(OBJS) $(LIBS)
    @echo "Linking complete."
$(OBJS): $(SRCS)
    @echo "Starting compilation."
    $(CC) $(CFLAGS) $(INCLUDE) -c $<
    @echo "Compilation complete."   
clean::
    @$(RM) *.o *.out

在使用%g打印

时有效
#include <stdlib.h>
#include <stdio.h>
int main(){
    unsigned long long int nanoseconds = 1234567890LLU;
    double nanoseconds_d = nanoseconds*1e-9;
    printf("%gn", nanoseconds_d);
    nanoseconds_d = ((double) nanoseconds)*1e-9;
    printf("%gn", nanoseconds_d);
}

输出
1.23457
1.23457

事实证明,我使用的交叉gcc版本有一个与软浮点和硬浮点有关的错误。因此,从unsigned long long强制转换为double不能正常工作,从而导致问题。

相关内容

  • 没有找到相关文章

最新更新