Pregunta

Is there anyway to determine percision at runtime using C commands? there is printf command with dot notation:

printf("%.xf", number);

but x should be fixed before compiling.

¿Fue útil?

Solución

Yes, specify an asterisk and provide the precision as a (int) parameter

for (int k = 0; k < 5; k++) printf("%.*f\n", k, 42.0);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top