将float数据类型转换为str

Posted 熬红了眼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将float数据类型转换为str相关的知识,希望对你有一定的参考价值。

示例程序:

  #include <stdio.h>

  .

  .

  void UART_send_byte(char dat);

  void UART_send_string(unsigned char *buf);

  .

  unsigned char TX_Buf[10];

  sprintf(TX_Buf,"D%f",Distance);

  UART_send_string(TX_Buf);

  Delay_ms(500);

 

 

  

  /*
  * UART 发送一字节
  */

  void UART_send_byte(char dat)
  {
    SBUF = dat;
    while (TI == 0);
    TI = 0;
  }

  /*
  * UART 发送字符串
  */
  void UART_send_string(unsigned char *buf)
  {
    while (*buf != ‘\0‘){
      UART_send_byte(*buf++);
    }
  }

 

以上是关于将float数据类型转换为str的主要内容,如果未能解决你的问题,请参考以下文章

在vc中,怎样把float类型的数据转换为string类型的数据

我如何清理此数据类型对象并将其转换为float类型,并保持Null和NaN

常用数据类型转换

数据类型转换

常用的数据类型转换

python-常用的数据类型转换