03/09/2021 23:44
Eu queria saber porque no format o float esta sendo tratado como um valor inteiro '-'
COMO ESTA:
format(string, sizeof(string), "%d", valor_float);
COMO CORRIGIR:
format(string, sizeof(string), "%f", valor_float);
OU:
format(string, sizeof(string), "%d", floatround(valor_float));
COMO ESTA:
format(string, sizeof(string), "%d", valor_float);
COMO CORRIGIR:
format(string, sizeof(string), "%f", valor_float);
OU:
format(string, sizeof(string), "%d", floatround(valor_float));