2
如何将浮点数转换为char *?
在电气工程堆栈交换上问了这个问题,并直接在这里进行: 自我解释;我将如何将浮点数转换为char *?我有一些代码,其中的浮动“电阻”不断更新。我希望能够将变量“结果”更新为“电阻”的值。如果有帮助,以下是一些代码: const char * result = ""; float resistance = 2.5; result = resistance; //This bit (obviously) doesn't work 谢谢你的帮助!
11
arduino-uno
c++
c
float