f4ad36c4
1 2 3 4 5 6 7 8
#include <stdlib.h> #include <stdio.h> char *gcvt(double x, int n, char *b) { sprintf(b, "%.*g", n, x); return b; }