“c float to string” Kode Jawaban

c float to string

#include <stdio.h>
int main()
{
   float f = 1.123456789;
   char c[50]; //size of the number
    sprintf(c, "%g", f);
    printf(c);
    printf("\n");
}
VasteMonde

c Konversi float menjadi string

#include <stdio.h>
int main()
{
   float f = 1000;
   char c[50]; //size of the number
    sprintf(c, "%g", f);
    printf(c);
    printf("\n");
}
CODE WITH SAM

Jawaban yang mirip dengan “c float to string”

Pertanyaan yang mirip dengan “c float to string”

Lebih banyak jawaban terkait untuk “c float to string” di C

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya