本文介绍了将浮动文字指定为void *的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有以下内容:

void * x;

const char str [] =" abcdefghijklmn" ;;


我可以分配x = 0x12345678;

我可以分配x = str;


但是如何为x分配浮点文字以使内容x是这个文字浮点的IEEE754格式吗?

if I have the following:
void *x;
const char str[]="abcdefghijklmn";

I can assign x=0x12345678;
I can assign x=str;

but how can I assign a float literal to x such that the content of x is an IEEE754 format of this literal floating point?

推荐答案



展开 | 选择 | Wrap | 行号


这篇关于将浮动文字指定为void *的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 00:52