문자열과 실수 변환
☞ strtod, strtof, strtold, atof, ecvt, fcvt, gcvt double strtod(const char *str, char **tailptr); float strtof(const char *str, char **tailptr); long double strtold(const char *str, char **tailptr); double atof(const char *str); char *ecvt(double value, int ndigit, int *decpt, int *neg); char *fcvt(double value, int ndigit, int *decpt, int *neg); char *gcvt(double value, int ndigit, char *buf); ..
C | C++
2018. 6. 29. 11:42