문자열을 가지고 float형으로 출력하는 함수 프로그래밍. /************************************ written SeungHwan File of MyAtof() 2008.08.19 ************************************/ #include #include void Count_MyAtof(char* ptr , int* pmark , int* piValueCount , int* pdValueCount) { if(*ptr == '-') { *pmark = 1; ptr++; } while((*ptr) != NULL) { while((*ptr) != '.') {//정수부분 (*piValueCount)++; ptr++; } ptr++; //소수점 지나가기 whi..