Domanda

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.

È stato utile?

Soluzione

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);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top