문자열로 되어 있는 숫자를 그냥 보는 것은 어렵다. 숫자 단위가 커지다 보면 더욱더 읽기 난해하다. 그래서 세자리마다 콤마(comma)로 쉼표를 찍어 준다면 읽기 편하겠다. static char sx_cma_print_buf[50]; static char * print_with_comma(char *str) // 컴마로분리 { int ix = 0; int iy = 0; int pos = 0; lldiv_t dv; char x_tmp[50]; bzero(sx_cma_print_buf, sizeof(sx_cma_print_buf)); strcpy(x_tmp, str); for( ix=0; ix